how to remove object from an array code example
Example 1: array remove index from array
const array = [2, 5, 9];
const index = array.indexOf(5);
if (index > -1) {
array.splice(index, 1);
}
console.log(array);
Example 2: 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;
Example 3: javascript remove object from array
var array = ['Object1', 'Object2'];
array.pop(object);
array.shift(object);
array.splice(position, 1);