Created
November 7, 2017 22:48
-
-
Save Jahans3/d52e5202d42b6eb1cc9a2c2aee8c068c 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 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