Skip to content

symmetricDifference$

Subhajit Sahu edited this page Jun 18, 2020 · 4 revisions

Gives entries not present in both objects. 🏃 [:vhs:] 📦 🌔 📒

Alternatives: symmetricDifference, [symmetricDifference$].
Similar: union, intersection, difference, symmetricDifference, isDisjoint.

object.symmetricDifference(x, y);
// x: an object
// y: another object
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 }

references

Clone this wiki locally