Skip to content

Instantly share code, notes, and snippets.

@maxjing
Created October 30, 2018 20:27
Show Gist options
  • Save maxjing/334997da49c00d17fa26589f499a35d5 to your computer and use it in GitHub Desktop.
Save maxjing/334997da49c00d17fa26589f499a35d5 to your computer and use it in GitHub Desktop.
es6Notes
const map = new Map();
map.set('first', 'hello');
map.set('second', 'world');
for (let [key, value] of map) {
console.log(key + " is " + value);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment