//Capitilise first letter String.prototype.capitilise = function(){ return this.substring(0, 1).toUpperCase()+this.substring(1, this.length); } //Example usage var name = "michael"; console.log(name.capitilise()); //Returns Michael