Let's say that I have an object which looks like this:
{
prop1: false,
prop2: false,
prop3: false
}
and another object which looks like this:
{
prop1: false,
prop2: true,
prop3: false
}
where the difference is within the prop2
property. Is there any way or library (vanilla preferred though) which will compare the two objects, find the property with the different value, and return the property name (in this case prop2
)?
I have tried using the difference and differenceBy functions in lodash to no success. Any help or suggestions will be greatly appreciated!
this is the fastest and simplest method
this return false. order of props is also important
You could filter the keys (assuming same keys) by checking the unequal value.