how to delete a element from an array in js at a specific index code example

Example 1: javascript remove from array by index

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

Example 2: js remove from array by value

const index = array.indexOf(item);
if (index !== -1) array.splice(index, 1);

Example 3: javascript remove element from array

const cars = ['farrari', 'Ice Cream'/* It is not an car */, 'tata', 'BMW']

//to remove a specific element
cars.splice(colors.indexOf('Ice Cream'), 1);

//to remove the last element
cars.pop();

Example 4: javascript remove index from array

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