Nodejs Utililty Methods String Capitalize

List of utility methods to do String Capitalize

Description

The list of methods to do String Capitalize are organized into topic(s).

Method

capitalize()
String.prototype.capitalize = function() {
  var strSplit = this.split(" ");
  var newStr = "";
  for (var i = 0; i < strSplit.length; i++) {
    if (i === 0) {
      newStr += strSplit[i].charAt(0).toUpperCase() + strSplit[i].slice(1).toLowerCase();
    } else {
      newStr += " " + strSplit[i].charAt(0).toUpperCase() + strSplit[i].slice(1).toLowerCase();
  return newStr;
};
module.exports = String
capitalize()
String.prototype.capitalize = function() {
    return this.charAt(0).toUpperCase() + this.slice(1).toLowerCase();
var greet = function(name) {
return "Hello " + name.capitalize() + "!";
};
capitalize()
String.prototype.capitalize = function () {
    return this.charAt(0).toUpperCase() + this.slice(1);
};
capitalize()
String.prototype.capitalize = function() {
  return this.charAt(0).toUpperCase() + this.slice(1);
};
function inherits(ctor, superCtor) {
  ctor.super_ = superCtor;
  var TempCtor = function () {};
  TempCtor.prototype = superCtor.prototype;
  ctor.prototype = new TempCtor();
  ctor.prototype.constructor = ctor;
...
capitalize()
String.prototype.capitalize = function() {
  return this[0].toUpperCase() + this.substring(1);
capitalize()
String.prototype.capitalize = function() {
  return this.replace(/\w\S*/g, function(txt){return txt.charAt(0).toUpperCase() + txt.substr(1).toLowerCase();});
capitalize()
String.prototype.capitalize = function() {
    return this.charAt(0).toUpperCase() + this.slice(1);
};
capitalize()
function getRandomInt(min, max) {
    return Math.floor(Math.random() * (max - min + 1)) + min;
String.prototype.capitalize = function() {
    return this.charAt(0).toUpperCase() + this.slice(1);
capitalize()
String.prototype.capitalize = function() {
    word = this.toLowerCase();
    return word.charAt(0).toUpperCase() + word.slice(1);
};
capitalize()
String.prototype.capitalize = function() {
  var letter = this[0].toUpperCase();
  var str = letter+this.substr(1);
  return str;