Created
July 3, 2015 05:50
-
-
Save MNBuyskih/2816d656d5eb77cedc37 to your computer and use it in GitHub Desktop.
Capitalize first letter in string
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* 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