I want to compare two arrays with objects with different key names using underscore...
array1 = [{email:"[email protected]", first_name:"asad"}, {email:"[email protected]", first_name:"name1"}]
array2 = [{email2:"[email protected]", first_name2:"asad"}, {email2:"[email protected]", first_name2:"name22"}]
Want Output of unique email IDS from array2 which is NOT present in array1 like this...
array3 = [{email2:"[email protected]", first_name2:"name22"}]