Comment créer un tableau de longueur spécifique en JavaScript
const array = new Array(3).fill(0)
Unsightly Unicorn
const array = new Array(3).fill(0)