Files
30-seconds-of-code/snippets/isDisjoint.md
Isabelle Viktoria Maciohsek 27c168ce55 Bake date into snippets
2021-06-13 13:55:00 +03:00

641 B

title, tags, firstSeen, lastUpdated
title tags firstSeen lastUpdated
isDisjoint array,intermediate 2020-10-11T11:53:01+03:00 2020-10-11T11:53:01+03:00

Checks if the two iterables are disjointed (have no common values).

  • Use the new Set() constructor to create a new Set object from each iterable.
  • Use Array.prototype.every() and Set.prototype.has() to check that the two iterables have no common values.
const isDisjoint = (a, b) => {
  const sA = new Set(a), sB = new Set(b);
  return [...sA].every(v => !sB.has(v));
};
isDisjoint(new Set([1, 2]), new Set([3, 4])); // true
isDisjoint(new Set([1, 2]), new Set([1, 3])); // false