Skip to content

Instantly share code, notes, and snippets.

@qmmr
Created May 15, 2012 10:17
Show Gist options
  • Save qmmr/2700610 to your computer and use it in GitHub Desktop.
Save qmmr/2700610 to your computer and use it in GitHub Desktop.
JavaScript: extending native String with capitalize
// adding capitalize method to String object
if (!String.prototype.capitalize) {
String.prototype.capitalize = function() {
return this.charAt(0).toUpperCase() + this.slice(1);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment