Skip to content

Instantly share code, notes, and snippets.

@johnsmith17th
Created April 16, 2013 01:54
Show Gist options
  • Save johnsmith17th/5392757 to your computer and use it in GitHub Desktop.
Save johnsmith17th/5392757 to your computer and use it in GitHub Desktop.
Capitalize and uncapitalize of string.
function capitalize(str) {
return (str.charAt(0).toUpperCase() + str.slice(1));
}
function uncapitalize(str) {
return (str.charAt(0).toLowerCase() + str.slice(1));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment