Skip to content

Instantly share code, notes, and snippets.

@Kamilnaja
Last active May 13, 2017 19:13
Show Gist options
  • Save Kamilnaja/77f3fd5dc9a119beee1f611349fa4a91 to your computer and use it in GitHub Desktop.
Save Kamilnaja/77f3fd5dc9a119beee1f611349fa4a91 to your computer and use it in GitHub Desktop.
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