Skip to content

Instantly share code, notes, and snippets.

@cyrilletuzi
Created January 28, 2017 21:53
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 cyrilletuzi/0d0f4f43a7a05ed85cfb73f39581ef8f to your computer and use it in GitHub Desktop.
Save cyrilletuzi/0d0f4f43a7a05ed85cfb73f39581ef8f to your computer and use it in GitHub Desktop.
class Editor extends User {
constructor(firstName) {
super(firstName);
}
sayHello() {
super.sayHello();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment