Last active
February 26, 2018 16:39
-
-
Save nitin42/1a883dcb10fca6b96282ef6094f53b4c 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
class Sedan extends Car { | |
constructor(name) { | |
super() | |
this.name = name | |
} | |
operate(visitor=CarVisitor) { | |
visitor.accelerate(this) | |
} | |
} | |
class Hatchback extends Car { | |
constructor(name) { | |
super() | |
this.name = name | |
} | |
operate(visitor=CarVisitor) { | |
visitor.brake(this) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment