What is the most efficient way to create an arbitrary length zero filled array in JavaScript?
function zeroFilledArray(size) { return new Array(size + 1).join('0').split(''); }