Compares the values of two iterables, returning a list of items they have in common and those unique in a or b. Ignores ordering of values, and is NOT recursive.
a
b
const a = ['apples', 'oranges', 'pears' ]const b = ['pears', 'kiwis', 'bananas' ];const r = compareValuesShallow(a, b);r.shared; // [ 'pears' ]r.a; // [ 'apples', 'oranges' ]r.b; // [ 'kiwis', 'bananas' ] Copy
const a = ['apples', 'oranges', 'pears' ]const b = ['pears', 'kiwis', 'bananas' ];const r = compareValuesShallow(a, b);r.shared; // [ 'pears' ]r.a; // [ 'apples', 'oranges' ]r.b; // [ 'kiwis', 'bananas' ]
By default uses === semantics for comparison.
Default comparer function is equiv to checking a === b. Use isEqualValueDefault to compare by value, via comparing JSON string representation.
a === b
Compares the values of two iterables, returning a list of items they have in common and those unique in
a
orb
. Ignores ordering of values, and is NOT recursive.By default uses === semantics for comparison.