Replies: 2 comments
-
|
I solved this by updating my Typescript version from 4 to 5. - "typescript": "~4.5.4",
+ "typescript": "^5.5.0", |
Beta Was this translation helpful? Give feedback.
0 replies
-
|
same problem here, update of typescript did not solve it. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Describe the bug
Hi Team, I cannot get my project work with Set.prototype.intersection()
Reproduction
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Set/intersection
Steps to reproduce
onst odds = new Set([1, 3, 5, 7, 9]);
const squares = new Set([1, 4, 9]);
console.log(odds.intersection(squares));
System Info
Used Package Manager
npm
Logs
No response
Validations
Beta Was this translation helpful? Give feedback.
All reactions