Appearance
Sets are an alternative to Arrays for storing multiple items at once.
Sets do not allow for duplicate values.
You can construct a set by just passing in any old Arrays or Iterable.
// Set { a, b, c } const set = new Set(['a', 'b', 'c', 'a']); // 3 set.size;