how to remove array from array of object in javascript code example
Example 1: javascript remove object from array
const array = [
{ id: 1, name: 'serdar' },
{ id: 5, name: 'alex' },
{ id: 300, name: 'brittany' }
];
const idToRemove = 5;
const filterArray = array.filter((item) => item.id !== idToRemove); //ES6
// [
// { id: 1, name: 'serdar' },
// { id: 300, name: 'brittany' }
// [
Example 2: how to remove an object from an array javascript
someArray.splice(x, 1);// if you want to remove element at position x