-
Notifications
You must be signed in to change notification settings - Fork 3
symmetricDifference$
Subhajit Sahu edited this page Jun 18, 2020
·
4 revisions
Gives entries not present in both objects. 🏃 📼 📦 🌔 📒
Alternatives: symmetricDifference, symmetricDifference$.
Similar: union, intersection, difference, symmetricDifference, isDisjoint.
object.symmetricDifference$(x, y);
// x: an object (updated)
// y: another object
// --> x
const object = require('extra-object');
var x = {a: 1, b: 2, c: 3, d: 4};
var y = {c: 30, d: 40, e: 50, f: 60};
object.symmetricDifference$(x, y);
// { a: 1, b: 2, e: 50, f: 60 }
x;
// { a: 1, b: 2, e: 50, f: 60 }
var x = {a: 1, b: 2, c: 3, d: 4};
var y = {d: 40, e: 50, f: 60};
object.symmetricDifference$(x, y);
// { a: 1, b: 2, c: 3, e: 50, f: 60 }