js remove array elment at index code example

Example 1: remove a particular element from array

var colors = ["red","blue","car","green"];
var carIndex = colors.indexOf("car");//get  "car" index
//remove car from the colors array
colors.splice(carIndex, 1); // colors = ["red","blue","green"]

Example 2: 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();