Skip to content

Instantly share code, notes, and snippets.

@kyrylo
Created November 7, 2014 03:00
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 kyrylo/3c5acbc0830128a35dad to your computer and use it in GitHub Desktop.
Save kyrylo/3c5acbc0830128a35dad to your computer and use it in GitHub Desktop.
x = {}
> Object {}
x[{}] = 1
> 1
x[{a: 999}] = 2
> 2
x[{}]
> 2
x[{a: 999}]
> 2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment