Skip to content

Instantly share code, notes, and snippets.

@Jahans3
Created November 7, 2017 22:48
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Jahans3/d52e5202d42b6eb1cc9a2c2aee8c068c to your computer and use it in GitHub Desktop.
Save Jahans3/d52e5202d42b6eb1cc9a2c2aee8c068c to your computer and use it in GitHub Desktop.
const Ford = {
seats: 4,
passengers: [{ name: 'Bobby', height: 175 }, { name: 'Shirley', height: 150 }],
beep () {
console.log('Beep beep')
}
}
const FordCar = implement(Car)(Ford)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment