Assuming I have the following array of objects
[{a:1,b:2,c:4}, {a:3,b:4,c:7}, {a:7,b:10,c:10}, {a:1, b:2,c:4}]
How do I select the unique items in this array. I need to compare both fields (a, b only, excluding c) and the examples I have seen show a map which takes a single field only.