how to remove element from object array in javascript using property value code example
Example 1: remove object from array of objects based on object property javascript
var myArray = [
{field: 'id', operator: 'eq', value: id},
{field: 'cStatus', operator: 'eq', value: cStatus},
{field: 'money', operator: 'eq', value: money}
];
myArray = myArray.filter(function( obj ) {
return obj.field !== 'money';
});
Example 2: how to delete object property of array javascript
array.forEach(function(v){ delete v.bad });