Contact: aviboots(AT)netvision.net.il
39,959 questions
51,901 answers
573 users
const arr = ['typescript', 'php', 'python', 'c', 'c++', 'php']; const index = arr.indexOf('python'); if (index !== -1) { arr.splice(index, 1); } console.log(arr); /* run: ["typescript", "php", "c", "c++", "php"] */