Created
July 17, 2019 04:00
-
-
Save deleteman/87ccc522fbd882c93fc24f8518b9ed3a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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