Contact: aviboots(AT)netvision.net.il
39,959 questions
51,901 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"] */