Skip to content

Instantly share code, notes, and snippets.

@alivesay
Created January 3, 2014 01:07
Show Gist options
  • Select an option

  • Save alivesay/8230612 to your computer and use it in GitHub Desktop.

Select an option

Save alivesay/8230612 to your computer and use it in GitHub Desktop.
Native Chrome JavaScript.
Copyright (c) 2013 Google Inc
var map = [];
var x = {};
x
=> {}
map[x] = 1;
=> 1
map
=> [ '[object Object]': 1 ]
map[x]
=> 1
eh?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment