javascript remove object from array by value in array code example
Example 1: find and delete element from array js
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: javascript remove object from array
var array = ['Object1', 'Object2'];
// SIMPLE
array.pop(object); // REMOVES OBJECT FROM ARRAY (AT THE END)
// or
array.shift(object); // REMOVES OBJECT FROM ARRAY (AT THE START)
// ADVANCED
array.splice(position, 1);
// REMOVES OBJECT FROM THE ARRAY (AT POSITION)
// Position values: 0=1st, 1=2nd, etc.
// The 1 says: "remove 1 object at position"