Skip to content

Instantly share code, notes, and snippets.

@Claud
Created August 30, 2014 17:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Claud/c699421984553758b5c0 to your computer and use it in GitHub Desktop.
Save Claud/c699421984553758b5c0 to your computer and use it in GitHub Desktop.
Переводит первый символ слова в верхний регистра.
String.prototype.ucFirst = function () {
var str = this;
if (str.length) {
str = str.charAt(0).toUpperCase() + str.slice(1);
}
return str;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment