Skip to content

Instantly share code, notes, and snippets.

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