Skip to content

Instantly share code, notes, and snippets.

@joshhunt
Created May 15, 2018 17:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joshhunt/6f7f42fadc7bbbc258a1d667a74d56be to your computer and use it in GitHub Desktop.
Save joshhunt/6f7f42fadc7bbbc258a1d667a74d56be to your computer and use it in GitHub Desktop.
class Base {
constructor() {
this.hello = 'world';
}
}
class Wowee extends Base {
constructor() {
super();
}
greet() {
console.log('josh', this.hello);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment