I have two object array in Js
a = [{"photoId":"1","albumId":"121"},{"photoId":"2","albumId":"131"},{"photoId":"3","albumId":"131"}] ;
b = [{"photoId":"2","albumId":"131"}];
I want to remove b object array entry from the a object array..so the output should be
c = [{"photoId":"1","albumId":"121"},{"photoId":"3","albumId":"131"}];
its easy to achieve in case of array but how to do the same for array object..