Nodejs String Repeat repeatify(n)

Here you can find the source of repeatify(n)

Method Source Code

//Create a repeatify function on String object -- native mthods.

String.prototype.repeatify = function(n) {
   var str = ''
   for (var i = 0; i < n; i++) {
      str += this//from  w  ww.  j  ava 2s  .c  o  m
   }
   return str
}

console.log('hello'.repeatify(3))

Related

  1. repeat(times)
    String.prototype.repeat = function(times) {
      var a = [this];
      for (var i = 0; i < times; i++) {
        a.push(this);
      return a.join("");
    
  2. repeat(times)
    String.prototype.repeat = function(times) {
        times = times || 0;
        if (times < 0) {
            times = 0;
        return new Array(times + 1).join(this);
    };
    
  3. 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) {
    ...
    
  4. repeatString(num)
    String.prototype.repeat = String.prototype.repeat || function(num) {
      return Array(num + 1).join(this);
    };
    
  5. repeatify(multiplier)
    String.prototype.repeatify = String.prototype.repeatify || function(multiplier) {
      return new Array( multiplier + 1 ).join(this)
    };
    
  6. repeatify(numTimes)
    String.prototype.repeatify = function(numTimes) {
        var strArray = "";
        for (var i = 0; i < numTimes; i++) {
            strArray += this;
        return strArray;
    };
    console.log('hello'.repeatify(6));
    
  7. repeatify(times)
    String.prototype.repeatify = String.prototype.repeatify || function(times) {
     var str = '';
        for (var i = 0; i< times; i++) {
            str +=this;
        return str;
    console.log("Jai Mata Di\n".repeatify(108));
    
  8. repeatify(times)
    String.prototype.repeatify = String.prototype.repeatify || function(times) {
       var str = '';
       for (var i = 0; i < times; i++) {
          str += this;
       return str;
    };
    console.log('hello'.repeatify(3));
    
  9. repeatify(times)
    'use strict';
    String.prototype.repeatify = String.prototype.repeatify || function(times) {
      var str = '';
      for (var i = 0; i < times; i++) {
        str += this;
      return str;
    };
    console.log('hello'.repeatify(3));
    ...