We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
esnext
The ES2025 Set.prototype methods proposal has now reached Stage 4, and has been rolled out in V8 and javascriptcore.
const a = new Set([1,2,3]), b = new Set([2,3,4]); a.union(b); a.intersection(b); a.difference(b); a.symmetricDifference(b); a.isSubsetOf(b); a.isSupersetOf(b); a.isDisjointFrom(b);
https://tc39.es/proposal-set-methods/
The text was updated successfully, but these errors were encountered:
Duplicate of #57228
Sorry, something went wrong.
No branches or pull requests
⚙ Compilation target
esnext
⚙ Library
esnext
Missing / Incorrect Definition
The ES2025 Set.prototype methods proposal has now reached Stage 4, and has been rolled out in V8 and javascriptcore.
Sample Code
Documentation Link
https://tc39.es/proposal-set-methods/
The text was updated successfully, but these errors were encountered: