Differences are the inverse of intersections. They consist of all of the values that are not in every collection. If you add together the intersection and the difference, you get all of the collection values.
Collection differences
Set differences
Sets have a subtract() method, which can be used to find the difference between two sets. Here's an example:
const mySet1 = Set.of('first', 'second', 'third');
const mySet2 = Set.of('first', 'second');
const myDiff1 = mySet1.subtract(mySet2);
const myDiff2 = mySet2.subtract(mySet1);
console.log('mySet1', mySet1.toJS());
// -> mySet1 [ 'first', 'second', 'third' ]
console.log('mySet2&apos...