Skip to content

Instantly share code, notes, and snippets.

@specialunderwear
Created January 30, 2012 00:44
Show Gist options
  • Save specialunderwear/1701657 to your computer and use it in GitHub Desktop.
Save specialunderwear/1701657 to your computer and use it in GitHub Desktop.
Change prototype and existing objects change as well
> var a = Counter;
> a;
0
> a.next();
1
> a.before();
Error: function before is not defined.
> Counter.prototype.before = function() {
> return this - 1;
> };
> a.before() ;
0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment