Skip to content

Instantly share code, notes, and snippets.

@deleteman
Created July 17, 2019 04:00
Show Gist options
  • Save deleteman/87ccc522fbd882c93fc24f8518b9ed3a to your computer and use it in GitHub Desktop.
Save deleteman/87ccc522fbd882c93fc24f8518b9ed3a to your computer and use it in GitHub Desktop.
let myMap {
uno: 1,
dos: 2,
tres: 3
}
for(let key in myMap) {
console.log(key, "=", myMap[key]);
}
/*
uno = 1
dos = 2
tres = 3
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment