Contact: aviboots(AT)netvision.net.il
41,215 questions
53,717 answers
573 users
const arr = ['typescript', 'php', 'python', 'c', 'c#', 'php']; const index = 1; arr.splice(index, 1, "c++"); console.log(arr); /* run: ["typescript", "c++", "python", "c", "c#", "php"] */