Contact: aviboots(AT)netvision.net.il
39,885 questions
51,811 answers
573 users
const arr = ['typescript', 'php', 'python', 'c', 'c#', 'c++', 'go', 'css', 'java']; const index = 4; arr.splice(index); console.log(arr); /* run: ["typescript", "php", "python", "c"] */
const arr = ['typescript', 'php', 'python', 'c', 'c#', 'c++', 'go', 'css', 'java']; const index = 4; arr.length = index; console.log(arr); /* run: ["typescript", "php", "python", "c"] */