Set
)a
∪ b
)a
∩ b
)a
\ b
)Set<T>
Set<T>.prototype
: single Set elementsSet<T>.prototype
: all Set elementsSet<T>.prototype
: iterating and loopingMap
Before ES6, JavaScript didn’t have a data structure for sets. Instead, two work-arounds were used:
Since ES6, JavaScript has the data structure Set
, which can contain arbitrary values and performs membership checks quickly.
There are three common ways of creating Sets.
First, you can use the constructor without any parameters to create an empty Set:
Second, you can pass an iterable (e.g. an Array) to the constructor. The iterated values become elements of the new Set:
Third, the .add()
method adds elements to a Set and is chainable:
.add()
adds an element to a Set.
.has()
checks if an element is a member of a Set.
.delete()
removes an element from a Set.
.size
contains the number of elements in a Set.
.clear()
removes all elements of a Set.
Sets are iterable and the for-of
loop works as you’d expect:
const set = new Set(['red', 'green', 'blue']);
for (const x of set) {
console.log(x);
}
// Output:
// 'red'
// 'green'
// 'blue'
As you can see, Sets preserve insertion order. That is, elements are always iterated over in the order in which they were added.
Given that Sets are iterable, you can use spreading (...
) to convert them to Arrays:
Converting an Array to a Set and back, removes duplicates from the Array:
Strings are iterable and can therefore be used as parameters for new Set()
:
As with Map keys, Set elements are compared similarly to ===
, with the exception of NaN
being equal to itself.
As with ===
, two different objects are never considered equal (and there is no way to change that, at the moment):
Sets are missing several common operations. Such an operation can usually be implemented by:
a
∪ b
)Computing the union of two Sets a
and b
means creating a Set that contains the elements of both a
and b
.
const a = new Set([1,2,3]);
const b = new Set([4,3,2]);
// Use spreading to concatenate two iterables
const union = new Set([...a, ...b]);
assert.deepEqual([...union], [1, 2, 3, 4]);
a
∩ b
)Computing the intersection of two Sets a
and b
means creating a Set that contains those elements of a
that are also in b
.
const a = new Set([1,2,3]);
const b = new Set([4,3,2]);
const intersection = new Set(
[...a].filter(x => b.has(x)));
assert.deepEqual([...intersection], [2, 3]);
a
\ b
)Computing the difference between two Sets a
and b
means creating a Set that contains those elements of a
that are not in b
. This operation is also sometimes called minus (−).
const a = new Set([1,2,3]);
const b = new Set([4,3,2]);
const difference = new Set(
[...a].filter(x => !b.has(x)));
assert.deepEqual([...difference], [1]);
Sets don’t have a method .map()
. But we can borrow the one that Arrays have:
const set = new Set([1, 2, 3]);
const mappedSet = new Set([...set].map(x => x * 2));
// Convert mappedSet to an Array to check what’s inside it
assert.deepEqual([...mappedSet], [2, 4, 6]);
We can’t directly .filter()
Sets, so we need to use the corresponding Array method:
const set = new Set([1, 2, 3, 4, 5]);
const filteredSet = new Set([...set].filter(x => (x % 2) === 0));
assert.deepEqual([...filteredSet], [2, 4]);
Set<T>
new Set<T>(values?: Iterable<T>)
[ES6]
If you don’t provide the parameter values
, then an empty Set is created. If you do, then the iterated values are added as elements to the Set. For example:
Set<T>.prototype
: single Set elements.add(value: T): this
[ES6]
Adds value
to this Set. This method returns this
, which means that it can be chained.
.delete(value: T): boolean
[ES6]
Removes value
from this Set. Returns true
if something was deleted and false
, otherwise.
.has(value: T): boolean
[ES6]
Checks whether value
is in this Set.
Set<T>.prototype
: all Set elementsget .size: number
[ES6]
Returns how many elements there are in this Set.
.clear(): void
[ES6]
Removes all elements from this Set.
Set<T>.prototype
: iterating and looping.values(): Iterable<T>
[ES6]
Returns an iterable over all elements of this Set.
[Symbol.iterator](): Iterable<T>
[ES6]
Default way of iterating over Sets. Same as .values()
.
.forEach(callback: (value: T, key: T, theSet: Set<T>) => void, thisArg?: any): void
[ES6]
Feeds each element of this Set to callback()
. value
and key
both contain the current element. This redundancy was introduced so that this callback
has the same type signature as the callback
of Map.prototype.forEach()
.
You can specify the this
of callback
via thisArg
. If you omit it, this
is undefined
.
Map
The following two methods mainly exist so that Sets and Maps have similar interfaces. Each Set element is handled as if it were a Map entry whose key and value are both the element.
Set.prototype.entries(): Iterable<[T,T]>
[ES6]Set.prototype.keys(): Iterable<T>
[ES6].entries()
enables you to convert a Set to a Map:
const set = new Set(['a', 'b', 'c']);
const map = new Map(set.entries());
assert.deepEqual(
[...map.entries()],
[['a','a'], ['b','b'], ['c','c']]);
Quiz
See quiz app.