我需要根据其中一个属性删除一个对象,该对象位于另一个数组中的数组内,这是我的尝试无效:
listArray.forEach(function(entry) {
entry.forEach(function(entry) {
toDelete = $.grep(entry, function(a) {
return a = 'theValue';
});
delete toDelete;
});
});
这是一个JSFiddle:http://jsfiddle.net/p95qL/