Skip to content

Instantly share code, notes, and snippets.

@olddustysocksunderthecouch
Last active May 6, 2018 17:00
Show Gist options
  • Save olddustysocksunderthecouch/c2a11b2c907aec94152e031cec9a50c6 to your computer and use it in GitHub Desktop.
Save olddustysocksunderthecouch/c2a11b2c907aec94152e031cec9a50c6 to your computer and use it in GitHub Desktop.
class Human{
species = ‘human’;
}
const person = new Person();
class Person extends Human{
name = ‘Douglas Adams’;
printAuthorsName = () => {
console.log(this.name);
}
const person = new Person();
person.printAuthorsName(); // prints 'Douglas Adams'
console.log(person.species); // prints ’human’
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment