Skip to content

Instantly share code, notes, and snippets.

@nitin42
Last active February 26, 2018 16:39
Show Gist options
  • Save nitin42/1a883dcb10fca6b96282ef6094f53b4c to your computer and use it in GitHub Desktop.
Save nitin42/1a883dcb10fca6b96282ef6094f53b4c to your computer and use it in GitHub Desktop.
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