Skip to content

Instantly share code, notes, and snippets.

@mkmik
Created December 17, 2014 09:29
Show Gist options
  • Save mkmik/7ed623a0f80b646e6db0 to your computer and use it in GitHub Desktop.
Save mkmik/7ed623a0f80b646e6db0 to your computer and use it in GitHub Desktop.
> function bar() { return this.x = 1 }
undefined
> x = new bar()
{ x: 1 }
> x.constructor
[Function: bar]
> x.__proto__.constructor
[Function: bar]
> x.__proto__.constructor = 42
42
> x.constructor
42
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment