Skip to content

Instantly share code, notes, and snippets.

@nairihar
Last active July 1, 2018 09:52
Show Gist options
  • Save nairihar/d5d250994eb7a86c37ce9100618f5d0a to your computer and use it in GitHub Desktop.
Save nairihar/d5d250994eb7a86c37ce9100618f5d0a to your computer and use it in GitHub Desktop.
JavaScript series, part 2, Map, medium
const myMap = new Map([[1, 11]]);
console.log(myMap.delete(1)); //true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment