Skip to content

Instantly share code, notes, and snippets.

Created January 22, 2018 09:29
Show Gist options
  • Save anonymous/1dd075a26a6c72fbffb4a1db2700d5c7 to your computer and use it in GitHub Desktop.
Save anonymous/1dd075a26a6c72fbffb4a1db2700d5c7 to your computer and use it in GitHub Desktop.
function A() {
this.counter = 0;
}
a = new A('Gabby');
A.prototype.toString = function dogToString() {
this.counter += 1;
return this.counter;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment