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/b8176c3f843f792c9a2c84d9fa113f34 to your computer and use it in GitHub Desktop.
Save Ibro/b8176c3f843f792c9a2c84d9fa113f34 to your computer and use it in GitHub Desktop.
CodingBlast blog - Set, Map - https://codingblast.com/javascript-set-map/
let map = new Map([['name', 'CodingBlast'], ['points', 33], [true, 55], ['true', 44]])
console.log(Array.from(map.keys()))
console.log(Array.from(map.values()))
console.log(Array.from(map.entries()))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment