Jak utworzyć szereg określonej długości w JavaScript

const array = new Array(3).fill(0)
Unsightly Unicorn