Skip to content

Instantly share code, notes, and snippets.

@roykolak
Created January 29, 2009 17:05
Show Gist options
  • Save roykolak/54628 to your computer and use it in GitHub Desktop.
Save roykolak/54628 to your computer and use it in GitHub Desktop.
Class inheritance helper
function inherit(subclass, superclass) {
var temp = function() {};
temp.prototype = superclass.prototype;
subclass.prototype = new temp();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment