Skip to content

Instantly share code, notes, and snippets.

@GengGao
Created July 17, 2013 22:53
Show Gist options
  • Save GengGao/6025270 to your computer and use it in GitHub Desktop.
Save GengGao/6025270 to your computer and use it in GitHub Desktop.
inherit function
function inherit(child, parent) {
var copy = Object.create(parent.prototype);
copy.constructor = child;
child.prototype = copy;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment