Skip to content

Instantly share code, notes, and snippets.

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