Skip to content

Instantly share code, notes, and snippets.

@lvreynoso
Last active April 24, 2019 22:11
Show Gist options
  • Save lvreynoso/ee496f81acb4ca0392bbb2b52f3abb3a to your computer and use it in GitHub Desktop.
Save lvreynoso/ee496f81acb4ca0392bbb2b52f3abb3a to your computer and use it in GitHub Desktop.
let my_map = Map()
for (let i = 0; i < my_map.length; i++ {
do something;
}
for (let key of my_map) {
do something;
}
my_map.forEach({ (value, key) =>
do something;
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment