Here you can find the source of repeat(times)
String.prototype.repeat = function(times){ return new Array(times + 1).join(this).trim(); }
String.prototype.repeat = function(repeat){ var endString = ''; for(var i = 0; i<repeat; i+=1){ endString += this; return endString;
String.prototype.repeat = function(times) { return (new Array(times + 1)).join(this); };
String.prototype.repeat = function(times) { return new Array(times+1).join(this); }; console.log( "yes".repeat(3) );
String.prototype.repeat = function (times) { return new Array(times + 1).join(this); };
String.prototype.repeat = function(times) { return (new Array(times + 1)).join(this); }; for (i = 1; i <= 7; i++) { console.log('#'.repeat(i));
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) { ...
String.prototype.repeat = function(times) { var a = [this]; for (var i = 0; i < times; i++) { a.push(this); return a.join("");
String.prototype.repeat = function(times) { times = times || 0; if (times < 0) { times = 0; return new Array(times + 1).join(this); };
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) { ...