remove elements in an array using index code example

Example 1: javascript remove from array by index

//Remove specific value by index
array.splice(index, 1);

Example 2: array remove index from array

const array = [2, 5, 9];

//Get index of the number 5
const index = array.indexOf(5);
//Only splice if the index exists
if (index > -1) {
  //Splice the array
  array.splice(index, 1);
}

//array = [2, 9]
console.log(array);

Example 3: javascript remove index from array

array.splice(index, 1); // Removes one element at index