Skip to content

Instantly share code, notes, and snippets.

@kmaida
Created May 15, 2017 18:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kmaida/f04621bf476e56cb3b249356c39be2f6 to your computer and use it in GitHub Desktop.
Save kmaida/f04621bf476e56cb3b249356c39be2f6 to your computer and use it in GitHub Desktop.
Capitalize string with JS
function capitalize(str) {
// Capitalize first letter of string
return str.charAt(0).toUpperCase() + str.slice(1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment