Skip to content

Instantly share code, notes, and snippets.

@dhoko
Created June 6, 2013 10:19
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 dhoko/5720577 to your computer and use it in GitHub Desktop.
Save dhoko/5720577 to your computer and use it in GitHub Desktop.
JavaScript ucFirst
function ucFirst(string) {
return string.charAt().toUpperCase() + string.slice(1);
}
/*
ucFirst('bonjour') => Bonjour
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment