Contact: aviboots(AT)netvision.net.il
39,845 questions
51,766 answers
573 users
let array = [4, 9, 8, 6, 5, 7]; let index = 2; let newElement = 100; // Insert the new element at the specified index array.splice(index, 0, newElement); console.log(array); /* run: [ 4, 9, 100, 8, 6, 5, 7 ] */