Skip to content

Instantly share code, notes, and snippets.

@rohanBagchi
Last active April 5, 2018 10:49
Show Gist options
  • Save rohanBagchi/034cedfec1445b3a53a40b0de4a6914d to your computer and use it in GitHub Desktop.
Save rohanBagchi/034cedfec1445b3a53a40b0de4a6914d 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);
Bar.prototype.constructor = Bar;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment