Skip to content

Instantly share code, notes, and snippets.

@mohnatus
Created March 11, 2019 07:47
Show Gist options
  • Select an option

  • Save mohnatus/c1cedef3db5441d4db10243f99762002 to your computer and use it in GitHub Desktop.

Select an option

Save mohnatus/c1cedef3db5441d4db10243f99762002 to your computer and use it in GitHub Desktop.
prototype inheritance in js
Child.prototype = Object.create(Parent.prototype);
Child.prototype.constructor = Child;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment