Skip to content

Instantly share code, notes, and snippets.

@seogi1004
Created November 27, 2017 13:56
Show Gist options
  • Save seogi1004/8a1b422f339a935753301a78b5c23b6e to your computer and use it in GitHub Desktop.
Save seogi1004/8a1b422f339a935753301a78b5c23b6e to your computer and use it in GitHub Desktop.
var Test = function() {
this.print= function() {
alert("this.print");
};
var tt = new this.constructor();
tt.print();
};
var ttt = new Test();
ttt.print();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment