Skip to content

Instantly share code, notes, and snippets.

@mkmik
Created December 11, 2014 15:10
Show Gist options
  • Save mkmik/21ce8c37dbba9a972f79 to your computer and use it in GitHub Desktop.
Save mkmik/21ce8c37dbba9a972f79 to your computer and use it in GitHub Desktop.
if (typeof console === "object") {
print = console.log;
}
function x() {
this.v = 1;
return function() {
this.v = 2;
}
}
var m = new (x());
print(m);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment