Nodejs String Capitalize capitalize()

Here you can find the source of capitalize()

Method Source Code

/**//from  w  w w .j av  a2 s. c o m
 * Capitalizes the first letter of a string and downcases all the others.
 *
 * @function external:String.prototype.capitalize
 * @return {string}
 * @example
 *  'hello'.capitalize() === 'Hello'
 *  'HELLO WORLD!'.capitalize() === 'Hello world!'
 */
String.prototype.capitalize = function() {
    return this.charAt(0).toUpperCase() + this.substring(1).toLowerCase();
};

Related

  1. capitalize()
    function decodeEntities(s){
        var str, temp= document.createElement('p');
        temp.innerHTML= s;
        str= temp.textContent || temp.innerText;
        temp=null;
        return str;
    String.prototype.capitalize = function() {
        return this.replace(/(?:^|\s)\S/g, function(a) { return a.toUpperCase(); });
    ...
    
  2. capitalize()
    String.prototype.capitalize = function() {
      return this[0].toUpperCase() + this.substr(1, this.length-1);
    };
    
  3. capitalize()
    String.prototype.capitalize = function () {
      return this.substring(0,1).toUpperCase() + this.substring(1,this.length).toLowerCase();
    };
    
  4. capitalize()
    String.prototype.capitalize = function() {
        if (this[0]) return this[0].toUpperCase() + this.slice(1);
    };
    
  5. capitalize()
    String.prototype.capitalize = function() {
      return this.toUpperCase()
    
  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.substring(1).toLowerCase();
    };
    
  8. capitalize()
    String.prototype.capitalize = function() {
      sentence = this.split(' ');
      for(word in sentence) {
        sentence[word] = sentence[word].ucfirst();
      return sentence.join(' ');
    
  9. capitalize()
    String.prototype.capitalize = function() {
        return this.charAt(0).toUpperCase() + this.slice(1);
    var getCurrentDate = function() {
        var today = new Date();
        var dd = today.getDate();
        var mm = today.getMonth()+1; 
        var yyyy = today.getFullYear();
        if(dd<10) {
    ...