Skip to content

Instantly share code, notes, and snippets.

@lean8086
Created October 2, 2012 19:43
Show Gist options
  • Save lean8086/3822820 to your computer and use it in GitHub Desktop.
Save lean8086/3822820 to your computer and use it in GitHub Desktop.
Uppercase to the first letter of a string
function ucfirst (string) {
return string[0].toUpperCase() + string.substr(1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment