Skip to content

Instantly share code, notes, and snippets.

@tmcw
Created August 13, 2013 12:19
Show Gist options
  • Save tmcw/6220549 to your computer and use it in GitHub Desktop.
Save tmcw/6220549 to your computer and use it in GitHub Desktop.
Gist from mistakes.io
x = { foo: 'a' };
x.foo = 'b';
x;
alias = x.foo;
alias = 'c';
x;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment