Nodejs String Capitalize capitalize()

Here you can find the source of capitalize()

Method Source Code

// section: String.prototype
// desc: Methods added to all strings.

// func: capitalize()
// desc: returns a copy of the string with the first letter capitalized and the rest lowercase.
String.prototype.capitalize = function () {
   return this.substring(0,1).toUpperCase() + this.substring(1,this.length).toLowerCase();
};
// endsection//from www .  j  a  v a 2  s.  c  o m

Related

  1. capitalize()
    String.prototype.capitalize = function(){
        return this.replace(/\w+/g, function(a){
            return a.charAt(0).toUpperCase() + a.slice(1).toLowerCase();
        });
    };
    
  2. capitalize()
    String.prototype.capitalize = function(){
        return this.charAt(0).toUpperCase() + this.slice(1);
    
  3. capitalize()
    String.prototype.capitalize = function() {
      return this.trim()
                 .split(' ')
                 .map(word => {
                    return word.replace(/^[a-z]/g, word.charAt(0).toUpperCase())
                 })
                 .join(' ')
    
  4. 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(); });
    ...
    
  5. capitalize()
    String.prototype.capitalize = function() {
      return this[0].toUpperCase() + this.substr(1, this.length-1);
    };
    
  6. capitalize()
    String.prototype.capitalize = function() {
        if (this[0]) return this[0].toUpperCase() + this.slice(1);
    };
    
  7. capitalize()
    String.prototype.capitalize = function() {
      return this.toUpperCase()
    
  8. capitalize()
    String.prototype.capitalize = function() {
        return this.charAt(0).toUpperCase() + this.substring(1).toLowerCase();
    };
    
  9. capitalize()
    String.prototype.capitalize = function() {
      return this.charAt(0).toUpperCase() + this.slice(1);
    };