Skip to content

Instantly share code, notes, and snippets.

@rohanBagchi
Last active April 5, 2018 10:50
Show Gist options
  • Save rohanBagchi/cda3fc12d34b04082137606f51956a1e to your computer and use it in GitHub Desktop.
Save rohanBagchi/cda3fc12d34b04082137606f51956a1e to your computer and use it in GitHub Desktop.
function Foo() {
this.name = 'Hello';
}
function Bar() {
Foo.call(this);
this.age = 31;
}
Bar.prototype = Object.create(Foo.prototype);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment