Skip to content

Instantly share code, notes, and snippets.

@rohozhnikoff
Created October 4, 2013 23:37
Show Gist options
  • Save rohozhnikoff/6834564 to your computer and use it in GitHub Desktop.
Save rohozhnikoff/6834564 to your computer and use it in GitHub Desktop.
Переводим первую букву в верхний регистр (удобно для всяких динамически формируемых штук)
String.prototype.cap = 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