Last active
April 5, 2018 10:50
-
-
Save rohanBagchi/cda3fc12d34b04082137606f51956a1e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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