With numbers you can multiply a number a certain number of times using the following code:
var y = 10;
var x = y * 3; // 30
Is there a way to do the same with strings with native methods?
var y = "test ";
var x = y * 3; // test test test
Or if not is there a succinct way to do this in a single line?