Skip to content

Instantly share code, notes, and snippets.

@bobdobbalina
Last active January 20, 2021 19:20
Show Gist options
  • Save bobdobbalina/47330cc70248315e1bdccfb430dce36a to your computer and use it in GitHub Desktop.
Save bobdobbalina/47330cc70248315e1bdccfb430dce36a to your computer and use it in GitHub Desktop.
Javascript: Capitalize the first letter in a string
const capitalize = ([first, ...rest], lowerRest = false) =>
first.toUpperCase() + (lowerRest ? rest.join('').toLowerCase() : rest.join(''));
capitalize('JavaScript'); // 'JavaScript '
capitalize('JavaScript', true); // 'Javascript's
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment