javascript remove from array index 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 from array by index
array.splice(index, 1);
Example 3: remove item at index in array javascript
let arr = [0,1,2,3,4,5]
let newArr = [...arr]
newArr.splice(1,1)
console.log(arr)
console.log(newArr)
Example 4: remove object in array javascript
someArray.shift();
someArray = someArray.slice(1);
someArray.splice(0, 1);
someArray.pop();
someArray = someArray.slice(0, a.length - 1);
someArray.length = someArray.length - 1;