remove item from an array with its index in js code example
Example 1: remove a particular element from array
var colors = ["red","blue","car","green"];
var carIndex = colors.indexOf("car");
colors.splice(carIndex, 1);
Example 2: javascript remove element from array
const cars = ['farrari', 'Ice Cream', 'tata', 'BMW']
cars.splice(colors.indexOf('Ice Cream'), 1);
cars.pop();
Example 3: remove index from array javascript
remove multiple index from array
var valuesArr = ["v1", "v2", "v3", "v4", "v5"];
var removeValFromIndex = [0, 2, 4];
removeValFromIndex.reverse().forEach(function(index) {
valuesArr.splice(index, 1);
});