Skip to content

Instantly share code, notes, and snippets.

@johnpolacek
Created August 27, 2012 17:53
Show Gist options
  • Save johnpolacek/3490828 to your computer and use it in GitHub Desktop.
Save johnpolacek/3490828 to your computer and use it in GitHub Desktop.
capitalize(word)
function capitalize(word) {
return word.charAt(0).toUpperCase() + word.substr(1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment