Contact: aviboots(AT)netvision.net.il
40,755 questions
53,120 answers
573 users
const array = [1, 5, 7, 2, 1, 12, 6, 4]; array.fill(0, 3); console.log(array); /* run: [1, 5, 7, 0, 0, 0, 0, 0] */