Skip to content

Instantly share code, notes, and snippets.

@dengjonathan
Created September 28, 2016 02:43
Show Gist options
  • Save dengjonathan/c64deffaab7e55ea4683f1c47014c3bd to your computer and use it in GitHub Desktop.
Save dengjonathan/c64deffaab7e55ea4683f1c47014c3bd to your computer and use it in GitHub Desktop.
OOP style
class Animal {
constructor(name, legs) {
this.name = name;
this.legs = legs;
}
}
class Dog extends Animal {
constructor(name) {
super(name, 4)
}
}
var fido = new Dog('Fido');
console.log(fido.legs) //4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment