Created
February 24, 2020 04:38
-
-
Save jsmanifest/9398ff1e6d5ba93eb6d5c3fc95058d31 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
function withToad(frog) { | |
frog.getTeeths = function() { | |
return 0 | |
} | |
} | |
const mikeTheFrog = new Frog('mike') | |
withToad(mikeTheFrog) | |
console.log(mikeTheFrog.getTeeths()) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment