Removing element from object array with linq.js
问题 I have started using linq.js a while ago, and found it very useful, but there's an issue I really can't solve somehow. I'm using angular, and I have a simple json array with the following structure: [ { id: 1, name: 'John', age: 20}, { id: 2, name: 'Josh', age: 34}, { id: 3, name: 'Peter', age: 32}, { id: 4, name: 'Anthony', age: 27}, ] I'm looking for the best (or at least a working) example wich could help me understanding how to remove an element of this array by the id property. I have