Since June 2024, this feature works across the latest devices and browser versions. This feature might not work in older devices or browsers.
The intersection() method of Set instances takes a set and returns a new set containing elements in both this set and the given set.
intersection(other)
A new Set object containing elements in both this set and the other set.
In mathematical notation, intersection is defined as:
And using Venn diagram:
intersection() accepts set-like objects as the other parameter. It requires this to be an actual Set instance, because it directly retrieves the underlying data stored in this without invoking any user code. Then, its behavior depends on the sizes of this and other:
this than other.size, then it iterates over other by calling its keys() method, and constructs a new set with all elements produced that are also present in this.this, and constructs a new set with all elements e in this that cause other.has(e) to return a truthy value.Because of this implementation, the efficiency of intersection() mostly depends on the size of the smaller set between this and other (assuming sets can be accessed in sublinear time). The order of elements in the returned set is the same as that of the smaller of this and other.
The following example computes the intersection between the set of odd numbers (<10) and the set of perfect squares (<10). The result is the set of odd numbers that are perfect squares.
const odds = new Set([1, 3, 5, 7, 9]);
const squares = new Set([1, 4, 9]);
console.log(odds.intersection(squares)); // Set(2) { 1, 9 }
| Desktop | Mobile | Server | |||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Opera | Safari | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | WebView Android | WebView on iOS | Bun | Deno | Node.js | |
intersection |
122 | 122 | 127 | 108 | 17 | 122 | 127 | 81 | 17 | 26.0 | 122 | 17 | 1.0.0 | 1.42 | 22.0.0 |
© 2005–2025 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Set/intersection