Last active
May 13, 2017 19:13
-
-
Save Kamilnaja/77f3fd5dc9a119beee1f611349fa4a91 to your computer and use it in GitHub Desktop.
This file contains 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
class House { | |
constructor() { | |
this.doors = 3; | |
this.windows = 10; | |
} | |
} | |
var myHouse = new House(); | |
//rozszerz klase | |
class newSkyscraper extends House { | |
constructor () { | |
super(); | |
this.name = "sky" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment