Skip to content

Instantly share code, notes, and snippets.

@Dornhoth
Created November 29, 2019 17:34
Show Gist options
  • Save Dornhoth/ceab5ed0c818a988d4445cf377d0338a to your computer and use it in GitHub Desktop.
Save Dornhoth/ceab5ed0c818a988d4445cf377d0338a to your computer and use it in GitHub Desktop.
const hiGreeterStudent = new Student();
const helloGreeterStudent = new HelloGreeter(new Student());
const goodMorningGreeterTeacher = new GoodMorningGreeter(new Teacher());
hiGreeterStudent.greet(); //"Hi!"
helloGreeterStudent.greet(); //"Hello!"
goodMorningGreeterTeacher.greet(); //"Good morning!"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment