Skip to content

Instantly share code, notes, and snippets.

View ow's full-sized avatar
🎊
building fun things

Owen Williams ow

🎊
building fun things
View GitHub Profile
@ow
ow / es6.js
Created March 7, 2016 13:38 — forked from csarrazi/es6.js
ES6 classes
class Animal {
constructor(race) {
this.race = race;
}
}
class Cat extends Animal {
constructor(race) {
super(race);
}