Nodejs String Capitalize capitalize()

Here you can find the source of capitalize()

Method Source Code

String.prototype.capitalize = function() {
    return this.charAt(0).toUpperCase() + this.slice(1);
}

function mapRange(value, low1, high1, low2, high2){
    return low2 + (high2 - low2) * ((value - low1) / (high1 - low1));
}

//returns the size of an assosciative array
function getAssocSize(array){
    var size = 0, key;
    for (key in array) {
        if (array.hasOwnProperty(key)) size++;
    }/*  www  . j a v a  2s . com*/
    return size;
}

function zeroPad(n, numbDigits) {
  z = '0';
  n = n + '';
  return n.length >= numbDigits ? n : new Array(numbDigits - n.length + 1).join(z) + n;
}

function dist( point1, point2 ){
  
  var xs = 0;
  var ys = 0;
  
  xs = point2.x - point1.x;
  xs = xs * xs;
 
  ys = point2.y - point1.y;
  ys = ys * ys;
  
  return Math.sqrt( xs + ys );
}

Related

  1. capitalize()
    String.prototype.capitalize = function() {
      return this[0].toUpperCase() + this.substring(1, this.length);
    
  2. capitalize()
    String.prototype.capitalize = function() {
        return this.charAt(0).toUpperCase() + this.toLowerCase().slice(1);
    
  3. capitalize()
    String.prototype.capitalize = function() {
      if (this.length <= 1) return this;
      var words = this.split(" ");
      for (var i in words)
        if (words[i][0] && words[i][0].match(/[A-Za-z]/))
          words[i] = words[i].replace(new RegExp(words[i][0]),words[i][0].toUpperCase());
      return words.join(" ");
    
  4. capitalize()
    String.prototype.capitalize = function () {
      return this[0].toUpperCase() + this.slice(1);
    };
    
  5. capitalize()
    String.prototype.capitalize = function () {
        if (this.valueOf()) {
            var novoTexto = "", palavra, palavras = this.valueOf().split(" ");
            for (var i = 0; i < palavras.length; i++) {
                palavra = palavras[i];
                novoTexto += palavra.substr(0, 1).toUpperCase() + palavra.substr(1) + " ";
            return novoTexto.trim();
        return "";
    
  6. capitalize()
    String.prototype.capitalize = function() {
        return this.charAt(0).toUpperCase() + this.slice(1);
    
  7. capitalize()
    String.prototype.capitalize = function() {
      return this.charAt(0).toUpperCase() + this.substr(1);
    };
    
  8. capitalize()
    String.prototype.capitalize = function() {
      return this.charAt(0).toUpperCase() + this.slice(1);
    };
    String.prototype.doubleQuote = function() {
      return '"' + this + '"';
    };
    
  9. capitalize()
    String.prototype.capitalize = function() {
        return this.charAt(0).toUpperCase() + this.slice(1);