remove object from array by property 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}
];

// only keep objects in array where obj.field !== '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 });