Contact: aviboots(AT)netvision.net.il
41,500 questions
54,078 answers
573 users
let arr = [5, 6, 7, 0, 9, 1]; arr.unshift(23, 89, 10); console.log(arr); /* run: [23, 89, 10, 5, 6, 7, 0, 9, 1] */