vote up 8 vote down star
4

What is the best or most concise method for returning a string repeated an arbitrary amount of times?

The following is my best shot so far:

function repeat(s, n){
    var a = [];
    while(a.length < n){
        a.push(s);
    }
    return a.join('');
}
flag

70% accept rate

4 Answers

vote up 23 vote down check

I'd put this function onto the String object directly. Instead of creating an array, filling it, and joining it with an empty char, just create an array of the proper length, and join it with your desired string. Same result, less process!

String.prototype.repeat = function( num )
{
    return new Array( num + 1 ).join( this );
}

alert( "string to repeat\n".repeat( 4 ) );
link|flag
2  
I try not to extend native objects, but otherwise this is a beautiful solution. Thanks! – brad Oct 14 '08 at 20:22
That's very clever. I can't wait to get a chance to use it. – Joel Anair Oct 14 '08 at 20:33
@ brad - why not? You'd rather pollute the global namespace with a function that has a fairly well-defined home (the String object)? – Peter Bailey Oct 14 '08 at 21:18
BaileyP: Extending the builtin objects breaks things. In the case of string it's not too bad, but for Array and so on, you cause problems – Orion Edwards Oct 15 '08 at 1:26
1  
one change I'd make to this function would be to put parseInt() around "num", since if you have a numeric string, you might get strange behaviour due to JS's type juggling. for example: "my string".repeat("6") == "61" – nickf May 19 at 2:28
show 2 more comments
vote up 0 vote down

/**
@desc: repeat string
@param: n - times
@param: d - delimiter
*/

String.prototype.repeat = function (n, d){
   return --n
     ? this+d+this.repeat(n,d)
     : ''+this
}

this is how to repeat string several times using delimeter.

link|flag
vote up -1 vote down
function repeat(s, n) { var r=""; for (var a=0;a<n;a++) r+=s; return r;}
link|flag
Isn't string concatenation costly? That's at least the case in Java. – Vijay Dev Aug 17 at 17:29
vote up 0 vote down

Why not just build a string with s n times?

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.