Skip to content

Instantly share code, notes, and snippets.

@egrueter-dev
Created June 20, 2016 22:06
Show Gist options
  • Save egrueter-dev/071cee55ced463719d74859edc168040 to your computer and use it in GitHub Desktop.
Save egrueter-dev/071cee55ced463719d74859edc168040 to your computer and use it in GitHub Desktop.
class InformalPerson extends Person {
constructor(firstname, lastname) {
super(firstname, lastname);
}
greet () {
return 'Yo ' + firstname;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment