What is the most efficient way to create an arbitrary length zero filled array in JavaScript?
What about new Array(51).join('0').split('')?
new Array(51).join('0').split('')