Node.js examples for String:Repeat
Repeats the string num times
/**//from w ww .ja va2s. co m * Repeats the string num times. * @param num * @returns */ String.prototype.repeat = function(num) { return new Array(num+1).join(this); };