Contact: aviboots(AT)netvision.net.il
38,901 questions
50,606 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] */