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
ECMASCript feature https://www.ecma-international.org/ecma-262/11.0/index.html#sec-map.prototype.entries -->
Example code
const map1 = new Map(); map1.set('0', 'foo'); map1.set(1, 'bar'); const iterator1 = map1.entries(); console.log(iterator1.next().value); // expected output: ["0", "foo"] console.log(iterator1.next().value); // expected output: [1, "bar"]
The text was updated successfully, but these errors were encountered:
I'm trying some implementation. I basically duplicated the ArrayIterator functionality, and tried to fit in the missing types.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
ECMASCript feature
https://www.ecma-international.org/ecma-262/11.0/index.html#sec-map.prototype.entries
-->
Example code
The text was updated successfully, but these errors were encountered: