Skip to content

Instantly share code, notes, and snippets.

@Krabaton
Created August 24, 2016 23:01
Show Gist options
  • Save Krabaton/b27d936061db53fb01a05093780b6b0a to your computer and use it in GitHub Desktop.
Save Krabaton/b27d936061db53fb01a05093780b6b0a to your computer and use it in GitHub Desktop.
function extend(Child, Parent) {
var F = function() {}
F.prototype = Parent.prototype
Child.prototype = new F()
Child.prototype.constructor = Child
Child.superclass = Parent.prototype
} // Child extend Parent {};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment