Contact: aviboots(AT)netvision.net.il
40,772 questions
53,159 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] */