Skip to content

Instantly share code, notes, and snippets.

@Ibro
Last active February 26, 2018 09:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Ibro/57308c88757844aa10762043e9ba296f to your computer and use it in GitHub Desktop.
Save Ibro/57308c88757844aa10762043e9ba296f to your computer and use it in GitHub Desktop.
CodingBlast blog - Set, Map - https://codingblast.com/javascript-set-map/
for (let key of map.keys()) {
console.log('key:' + key);
}
for (let value of map.values()) {
console.log('value:' + value);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment