delete an object from array code example
Example 1: remove element from javascript array
const array = [2, 5, 9];
console.log(array);
const index = array.indexOf(5);
if (index > -1) {
array.splice(index, 1);
}
// array = [2, 9]
console.log(array);
Example 2: how to delete an element from a n arry using filter
var array = [1, 2, 3, 4, 5, 6, 7, 8, 9, 0];var filtered = array.filter(function(value, index, arr){ return value > 5;});//filtered => [6, 7, 8, 9]//array => [1, 2, 3, 4, 5, 6, 7, 8, 9, 0]