Here you can find the source of repeatify(times)
String.prototype.repeatify = String.prototype.repeatify || function(times) { var str = ''; for (var i = 0; i < times; i++) { str += this;/*from w ww . ja v a 2 s.c o m*/ } return str; }; console.log('hello'.repeatify(3)); //hellohellohello
String.prototype.repeat = String.prototype.repeat || function(num) { return Array(num + 1).join(this); };
String.prototype.repeatify = String.prototype.repeatify || function(multiplier) { return new Array( multiplier + 1 ).join(this) };
String.prototype.repeatify = function(n) { var str = '' for (var i = 0; i < n; i++) { str += this return str console.log('hello'.repeatify(3))
String.prototype.repeatify = function(numTimes) { var strArray = ""; for (var i = 0; i < numTimes; i++) { strArray += this; return strArray; }; console.log('hello'.repeatify(6));
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));
'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)); ...
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));
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));
String.prototype.repeatify = String.prototype.repeatify || function(times) { var str = ''; for (var i = 0; i < times; i++) { str += this; return str; };