Skip to content

Instantly share code, notes, and snippets.

@dongerardor
Created February 19, 2013 19:00
Show Gist options
  • Save dongerardor/4988793 to your computer and use it in GitHub Desktop.
Save dongerardor/4988793 to your computer and use it in GitHub Desktop.
Capitalise first letter
function capitaliseFirstLetter(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