I think your best and only way to achieve this is to loop over your string.. As far as I know, there is no such feature in any languages.
function multiString(text, count){
var ret = "";
for(var i = 0; i < count; i++){
ret += text;
}
return ret;
}
var myString = multiString(" ", 3);
But I guess you could figure it out.