Skip to content

Instantly share code, notes, and snippets.

@MNBuyskih
Created July 3, 2015 05:50
Show Gist options
  • Save MNBuyskih/2816d656d5eb77cedc37 to your computer and use it in GitHub Desktop.
Save MNBuyskih/2816d656d5eb77cedc37 to your computer and use it in GitHub Desktop.
Capitalize first letter in string
/**
* Capitalize first letter in string
* Src is http://stackoverflow.com/a/1026087/1383927
*/
function ucfirst(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