Как создать массив конкретной длины в JavaScript
const array = new Array(3).fill(0)
Unsightly Unicorn
const array = new Array(3).fill(0)