I have this:
var arrA = [{id:1,name:'a'},{id:2,name:'b'},{id:3,name:'c'}];
I have another array:
var arrB = [{id:1,other:'c'},{id:3,other:'d'}];
How can I remove the items from arrA that have property id same as arrB using underscore.js?
The expected result should be:
arrA = [{id:2, name:'b'}];
Thanks,