Skip to content

Instantly share code, notes, and snippets.

@nitin42
Last active February 26, 2018 16:40
Show Gist options
  • Save nitin42/35c671d0c8833cb5d4283c6f46d46310 to your computer and use it in GitHub Desktop.
Save nitin42/35c671d0c8833cb5d4283c6f46d46310 to your computer and use it in GitHub Desktop.
const CarVisitor = {
accelerate: function(visitor) {
console.log(`Yeah! I am driving a ${visitor.name}.`)
},
brake: function(visitor) {
console.log(`Brakes failed in ${visitor.name}.`)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment