Skip to content

Instantly share code, notes, and snippets.

@ovaillancourt
Created December 7, 2011 23:01
Show Gist options
  • Save ovaillancourt/1445178 to your computer and use it in GitHub Desktop.
Save ovaillancourt/1445178 to your computer and use it in GitHub Desktop.
Poopy inheritance
Base = function(name){
this.name = name;
}
Child = function(){
Base.call(this,'ImAchild');
}
Child.prototype = new Base();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment