Created
July 1, 2018 10:16
-
-
Save nairihar/a2739ea1e8fc8cee4046e8ef4a800169 to your computer and use it in GitHub Desktop.
JavaScript series, part 2, Map, medium
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const myMap = new Map(); | |
myMap | |
.set(1, 11) | |
.set(2, 22); | |
const iterator = myMap.keys(); | |
for (let key of iterator) { | |
console.log(key); | |
} | |
// 1 | |
// 2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment