I have an array of objects like so:
var myArray = [ {field: \'id\', operator: \'eq\', value: id}, {field: \'cStatus\', operator: \'eq\', value: cSta
Using lodash library it is simple as this
_.remove(myArray , { field: 'money' });