Nodejs String Repeat repeatify(times)

Here you can find the source of repeatify(times)

Method Source Code

'use strict';/*from  ww  w  .  j av  a  2  s.  c om*/

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));

Related

  1. repeatify(multiplier)
    String.prototype.repeatify = String.prototype.repeatify || function(multiplier) {
      return new Array( multiplier + 1 ).join(this)
    };
    
  2. 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))
    
  3. 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));
    
  4. 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));
    
  5. 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));
    
  6. repeatify(times)
    String.prototype.repeatify = String.prototype.repeatify || function(times) {
        var string = '';
        for (var i = 0; i < times; i++) {
            string += this;
        return string;
    console.log('Hello'.repeatify(5));
    
  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('hello'.repeatify(3));
    
  8. repeatify(times)
    String.prototype.repeatify = String.prototype.repeatify || function(times) {
       var str = '';
       for (var i = 0; i < times; i++) {
          str += this;
       return str;
    };
    
  9. repeatify(timesToRepeat)
    String.prototype.repeatify = function(timesToRepeat) {
       var string = this;
       for (var i = 1; i < timesToRepeat; i++) {
          string += this;
       return string;
    };