Last active
November 7, 2017 22:40
-
-
Save Jahans3/b81e6fc558adf7db0477712fb25fbd50 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 }, | |
beep () { | |
console.log('Beep beep') | |
}, | |
fuelType: 'diesel' | |
} | |
// Bad implementation - throws an error! | |
const FordCar = implement(Car)(Ford) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment