Skip to content

Instantly share code, notes, and snippets.

@rhyolight
Created March 12, 2010 21:38
Show Gist options
  • Save rhyolight/330820 to your computer and use it in GitHub Desktop.
Save rhyolight/330820 to your computer and use it in GitHub Desktop.
function heir(p) {
function f() {}
f.prototype = p;
return new f();
}
PositionedRectangle.prototype = heir(Rectangle.prototype);
PositionedRectangle.prototype.constructor = Rectangle;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment