-
Notifications
You must be signed in to change notification settings - Fork 3
difference
Subhajit Sahu edited this page Dec 8, 2022
·
14 revisions
Obtain entries not present in another object.
Alternatives: difference, difference$.
Similar: isDisjoint, union, intersection, difference, symmetricDifference.
function difference(x, y)
// x: an object
// y: another object
const object = require('extra-object');
var x = {a: 1, b: 2, c: 3, d: 4, e: 5};
var y = {b: 2, d: 4};
object.difference(x, y);
// → { a: 1, c: 3, e: 5 }
var y = {b: -2, d: -4};
object.difference(x, y);
// → { a: 1, c: 3, e: 5 }