Nodejs String Repeat repeat(times)

Here you can find the source of repeat(times)

Method Source Code

String.prototype.repeat = function(times) {
    times = times || 0;/*  w  w  w .  j a v a2s.c o m*/
    if (times < 0) {
        times = 0;
    }
    return new Array(times + 1).join(this);
};

Related

  1. repeat(times)
    String.prototype.repeat = function (times) {
        return new Array(times + 1).join(this);
    };
    
  2. repeat(times)
    String.prototype.repeat = function(times) {
       return (new Array(times + 1)).join(this);
    };
    for (i = 1; i <= 7; i++) {
      console.log('#'.repeat(i));
    
  3. repeat(times)
    String.prototype.repeat = function(times){
        return new Array(times + 1).join(this).trim();
    
  4. repeat(times)
    process.env.NODE_ENV = 'test';
    var chai = require('chai');
    chai.config.showDiff = false;
    global.expect = chai.expect;
    function repeat (str, times) {
      return new Array(times + 1).join(str);
    global.repeat = repeat;
    String.prototype.repeat = function (times) {
    ...
    
  5. repeat(times)
    String.prototype.repeat = function(times) {
      var a = [this];
      for (var i = 0; i < times; i++) {
        a.push(this);
      return a.join("");
    
  6. repeatMine()
    String.prototype.repeatMine = function () {
      var times = [].slice.call(arguments), 
        i,
        newStr = '' + this;
      if (times == Infinity) {
           throw new RangeError('repeat count must be less than infinity');
      times = Math.floor(times);
      if (times <= 0) {
    ...
    
  7. repeatString(num)
    String.prototype.repeat = String.prototype.repeat || function(num) {
      return Array(num + 1).join(this);
    };
    
  8. repeatify(multiplier)
    String.prototype.repeatify = String.prototype.repeatify || function(multiplier) {
      return new Array( multiplier + 1 ).join(this)
    };
    
  9. repeatify(n)
    String.prototype.repeatify = function(n) {
      var str = ''
      for (var i = 0; i < n; i++) {
        str += this
      return str
    console.log('hello'.repeatify(3))