In Perl I can repeat a character multiple times using the syntax:
$a = \"a\" x 10; // results in \"aaaaaaaaaa\"
Is there a simple way to ac
Here is what I use:
function repeat(str, num) { var holder = []; for(var i=0; i