Nodejs String Capitalize capitalize()

Here you can find the source of capitalize()

Method Source Code

// This is a manifest file that'll be compiled into application.js, which will include all the files
// listed below./*  w w  w. ja  v a 2  s . c  o m*/
//
// Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts,
// or any plugin's vendor/assets/javascripts directory can be referenced here using a relative path.
//
// It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
// compiled file.
//
// Read Sprockets README (https://github.com/rails/sprockets#sprockets-directives) for details
// about supported directives.
//
//= require jquery
//= require angular
//= require turbolinks
//= require materialize-sprockets


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

Related

  1. capitalize()
    String.prototype.capitalize = function() {
        return this.charAt(0).toUpperCase() + this.toLowerCase().slice(1);
    
  2. 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(" ");
    
  3. capitalize()
    String.prototype.capitalize = function () {
      return this[0].toUpperCase() + this.slice(1);
    };
    
  4. 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 "";
    
  5. capitalize()
    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));
    function getAssocSize(array){
        var size = 0, key;
        for (key in array) {
    ...
    
  6. capitalize()
    String.prototype.capitalize = function() {
      return this.charAt(0).toUpperCase() + this.substr(1);
    };
    
  7. capitalize()
    String.prototype.capitalize = function() {
      return this.charAt(0).toUpperCase() + this.slice(1);
    };
    String.prototype.doubleQuote = function() {
      return '"' + this + '"';
    };
    
  8. capitalize()
    String.prototype.capitalize = function() {
        return this.charAt(0).toUpperCase() + this.slice(1);
    
  9. capitalize()
    String.prototype.capitalize = function() {
       return this.charAt(0).toUpperCase() + this.slice(1);
    String.prototype.titleize = function() {
       var string_array = this.split(' ');
       string_array = string_array.map(function(str) {
          return str.capitalize();
       });
       return string_array.join(' ');
    ...