Skip to content

Instantly share code, notes, and snippets.

@denchistyakov
Last active December 31, 2015 11:59
Show Gist options
  • Save denchistyakov/7983290 to your computer and use it in GitHub Desktop.
Save denchistyakov/7983290 to your computer and use it in GitHub Desktop.
a.func
var A = function() { };
A.prototype.func = function() {
console.log('#1');
}
var a = new A();
a.func = function() {
console.log('#2');
}
a.func();
delete a.func;
a.func();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment