Skip to content

Instantly share code, notes, and snippets.

@seogi1004
Created November 27, 2017 13:55
Show Gist options
  • Save seogi1004/fb9db460fcbeb835248ac92230c5732d to your computer and use it in GitHub Desktop.
Save seogi1004/fb9db460fcbeb835248ac92230c5732d to your computer and use it in GitHub Desktop.
var Test = function() {
this.print= function() {
this.constructor.show();
};
};
Test.show = function() {
alert("Test.show");
};
var t1 = new Test();
var t2 = new Test();
console.log(t1.constructor === t2.constructor);
var ct1 = new t1.constructor();
var ct2 = new t2.constructor();
ct1.print();
ct2.print();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment