What is the most efficient way to create an arbitrary length zero filled array in JavaScript?
const arr = Array.from({ length: 10 }).fill(0)