Skip to content

Instantly share code, notes, and snippets.

@lightsofapollo
Last active August 29, 2015 14:16
Show Gist options
  • Save lightsofapollo/54d136edc16e900e88a8 to your computer and use it in GitHub Desktop.
Save lightsofapollo/54d136edc16e900e88a8 to your computer and use it in GitHub Desktop.
function Parent() {}
function Child() {}
Child.prototype = Object.create(Parent.prototype);
Child.prototype.method = function() {
// ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment