I have followings object array
a = [{c:1, r:2}, {c:2, r:2}, {c:3, r:2}]
b = [{c:1, r:1}, {c:2, r:2}, {c:3, r:3}]
Now I want to remove common object this,
Like var result = removeCommon(a, b);
Output result = [{c:1, r:2}, {c:2, r:2}, {c:3, r:2}, {c:1, r:1}, {c:3, r:3}]
I need best way as array size is big