Skip to content

Instantly share code, notes, and snippets.

@emberian
Created March 13, 2012 23:37
Show Gist options
  • Save emberian/2032694 to your computer and use it in GitHub Desktop.
Save emberian/2032694 to your computer and use it in GitHub Desktop.
js> var a = {}
js> a.foo = "bar"
"bar"
js> a.a = a
({foo:"bar", a:{foo:"bar", a:{}}})
js> a
({foo:"bar", a:{foo:"bar", a:{}}})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment