Skip to content

Instantly share code, notes, and snippets.

@samwgoldman
Created May 21, 2015 00:02
Show Gist options
  • Save samwgoldman/50cb63f6e209ab653e73 to your computer and use it in GitHub Desktop.
Save samwgoldman/50cb63f6e209ab653e73 to your computer and use it in GitHub Desktop.
var foo = {}
Object.defineProperty(foo, "bar", {
enumerable: true,
get: function() {
return bar;
}
})
var bar = { foo: foo }
foo.bar.foo === foo // true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment