Nodejs String Capitalize capitalize()

Here you can find the source of capitalize()

Method Source Code

// UTILITIES//from   w  w w  .j  a  va  2s .co  m
String.prototype.capitalize = function () {
    return this.charAt(0).toUpperCase() + this.slice(1);
};

Related

  1. capitalize()
    if (typeof console === 'undefined') {
      console = {
        debug: function () {},
        dir:   function () {},
        info:  function () {},
        log:   function () {},
        warn:  function () {}
      };
    String.prototype.capitalize = function () {
      return this.charAt(0).toUpperCase() + this.slice(1);
    };
    
  2. capitalize()
    String.prototype.capitalize = function(){
        return this.toLowerCase().replace( /\b\w/g, function (m) {
            return m.toUpperCase();
        });
    };
    
  3. capitalize()
    exports.get_page_name = function(request) {
      if ('query' in request) {
        if ('page'in request.query) {
          var page = request.query.page;     
          if (page == "all") {
            return "All Pastes";
          } else if (page == "languages") {
            return "Languages";
          } else if ("tags") {
    ...
    
  4. 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
    
  5. capitalize()
    String.prototype.capitalize = function() {
        return this.charAt(0).toUpperCase() + this.slice(1).toLowerCase();
    var greet = function(name) {
    return "Hello " + name.capitalize() + "!";
    };
    
  6. 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;
    ...
    
  7. capitalize()
    String.prototype.capitalize = function() {
      return this[0].toUpperCase() + this.substring(1);
    
  8. capitalize()
    String.prototype.capitalize = function() {
      return this.replace(/\w\S*/g, function(txt){return txt.charAt(0).toUpperCase() + txt.substr(1).toLowerCase();});
    
  9. capitalize()
    String.prototype.capitalize = function() {
        return this.charAt(0).toUpperCase() + this.slice(1);
    };