function repeat(s, n){ var a = []; while(a.length < n){ a.push(s); } return a.join(''); } //或者 String.prototype.repeat = function( num ) { return new Array( num + 1 ).join( this ); }
function repeat(s, n){ var a = []; while(a.length < n){ a.push(s); } return a.join(''); } //或者 String.prototype.repeat = function( num ) { return new Array( num + 1 ).join( this ); }