Is there an easy way to create an array of empty strings in javascript? Currently the only way I can think to do it is with a loop:
var empty = new Array(someLength);
for(var i=0;i<empty.length;i++){
empty[i] = '';
}
but I'm wondering if there is some way to do this in one line using either regular javascript or coffeescript.