Skip to content

Instantly share code, notes, and snippets.

@dineshsprabu
Created February 2, 2016 09:50
Show Gist options
  • Save dineshsprabu/7abd2f76fb39797e70c4 to your computer and use it in GitHub Desktop.
Save dineshsprabu/7abd2f76fb39797e70c4 to your computer and use it in GitHub Desktop.
Changing First Letter of a String to Upper Case in Javascript
/* Changing first letter of string to uppercase */
String.prototype.toFirstUpperCase = function(){
return this.slice(0,1).toUpperCase()+this.slice(1);
}
/* Usage */
"example".toFirstUpperCase(); //Example
@InnerCat
Copy link

+this.slice(1).toLowerCase();
:)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment