Skip to content

Instantly share code, notes, and snippets.

@nairihar
Last active July 1, 2018 15:17
Show Gist options
  • Save nairihar/d429feda9190eb70a2bd8b8b6003af36 to your computer and use it in GitHub Desktop.
Save nairihar/d429feda9190eb70a2bd8b8b6003af36 to your computer and use it in GitHub Desktop.
JavaScript series, part 2, Map, medium
const obj = {};
const arr1 = [];
const arr2 = [];
obj[arr1] = 1;
obj[arr2] = 2;
console.log(obj);
// {"": 2}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment