Created
November 29, 2019 17:34
-
-
Save Dornhoth/ceab5ed0c818a988d4445cf377d0338a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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