Skip to content

Instantly share code, notes, and snippets.

@nairihar
Created July 1, 2018 10:16
Show Gist options
  • Save nairihar/3f152c57a71a0e05679794d6b8fd7ff8 to your computer and use it in GitHub Desktop.
Save nairihar/3f152c57a71a0e05679794d6b8fd7ff8 to your computer and use it in GitHub Desktop.
JavaScript series, part 2, Map, medium
const myMap = new Map();
myMap
.set(1, 11)
.set(2, 22);
const iterator = myMap.values();
for (let key of iterator) {
console.log(key);
}
// 11
// 22
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment