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: remove item from array javascript
const array = [2, 5, 9];
console.log(array);
const index = array.indexOf(5);
if (index > -1) {
array.splice(index, 1);
}
console.log(array);
Example 3: remove element from array javascript
function removeItemOnce(arr, value) {
var index = arr.indexOf(value);
if (index > -1) {
arr.splice(index, 1);
}
return arr;
}
function removeItemAll(arr, value) {
var i = 0;
while (i < arr.length) {
if (arr[i] === value) {
arr.splice(i, 1);
} else {
++i;
}
}
return arr;
}
console.log(removeItemOnce([2, 5, 9, 1, 5, 8, 5], 5));
console.log(removeItemAll([2, 5, 9, 1, 5, 8, 5], 5));
Example 4: remove element from array javascript
let fruit = ['apple', 'banana', 'orange', 'lettuce'];
fruit.splice(3, 1);
Example 5: how to delete an element of an array in javascript
let animals1 = ["dog", "cat", "mouse"]
delete animals1[1]
console.log(animals1)
let animals2 = ["dog", "cat", "mouse"]
animals2.splice(1, 1)
console.log(animals2)
let animals3 = ["dog", "cat", "mouse"]
animals3.splice(0, 2)
console.log(animals3)
Example 6: delete an item from array javascript
let items = [12, 548 ,'a' , 2 , 5478 , 'foo' , 8852, , 'Doe' ,2154 , 119 ];
items.length;
items.splice(3,1) ;
items.length;