Javascript – Compare two array of objects with matching key and value pair with dynamic keys
I have two array of objects with different key/value pair. I want to match these if it doesnt match then console log the unmatched object. array1=[ {'mobile': '24pp'}, {'android': '30pp'}, { 'ios': '23pp'} ] array2=[ {'ios': '23pp'}, {'android': '30pp'}, {'mobile':…