Nodejs String Capitalize capitalize()

Here you can find the source of capitalize()

Method Source Code

String.prototype.capitalize = function() {
    word = this.toLowerCase();/*www  . j  a va 2 s.c om*/
    return word.charAt(0).toUpperCase() + word.slice(1);
};

Related

  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;
    ...
    
  2. capitalize()
    String.prototype.capitalize = function() {
      return this[0].toUpperCase() + this.substring(1);
    
  3. capitalize()
    String.prototype.capitalize = function() {
      return this.replace(/\w\S*/g, function(txt){return txt.charAt(0).toUpperCase() + txt.substr(1).toLowerCase();});
    
  4. capitalize()
    String.prototype.capitalize = function() {
        return this.charAt(0).toUpperCase() + this.slice(1);
    };
    
  5. 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);
    
  6. capitalize()
    String.prototype.capitalize = function() {
      var letter = this[0].toUpperCase();
      var str = letter+this.substr(1);
      return str;
    
  7. capitalize()
    String.prototype.capitalize = function() {
      return this[0].toUpperCase() + this.substring(1, this.length);
    
  8. capitalize()
    String.prototype.capitalize = function() {
        return this.charAt(0).toUpperCase() + this.toLowerCase().slice(1);
    
  9. 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(" ");