Skip to content

Instantly share code, notes, and snippets.

@whatupdave
Created April 6, 2009 05:34
Show Gist options
  • Save whatupdave/90644 to your computer and use it in GitHub Desktop.
Save whatupdave/90644 to your computer and use it in GitHub Desktop.
var a = function(){ };
a.prototype.wrong = 'Dave: mayor of wrongville';
var b = function(){};
b.prototype = new a;
var c = function(){};
c.prototype = new b;
var d = new c;
a.prototype.wrong = 'GOD DAMN IT!';
alert(d.wrong);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment