Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save vdchristelle/6492442 to your computer and use it in GitHub Desktop.
Save vdchristelle/6492442 to your computer and use it in GitHub Desktop.
capitalize only first letter of a string
// capitalize only first letter of a string
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