Skip to content

Instantly share code, notes, and snippets.

@bitkorn
Created August 5, 2017 10:39
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 bitkorn/6c7157864b9418f3277a83be4674cdca to your computer and use it in GitHub Desktop.
Save bitkorn/6c7157864b9418f3277a83be4674cdca to your computer and use it in GitHub Desktop.
make the first character to upper letter
function stringToUpperFirst(string) {
return string.charAt(0).toUpperCase() + string.slice(1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment