Skip to content

Instantly share code, notes, and snippets.

@jsmanifest
Created February 24, 2020 04:38
Show Gist options
  • Save jsmanifest/9398ff1e6d5ba93eb6d5c3fc95058d31 to your computer and use it in GitHub Desktop.
Save jsmanifest/9398ff1e6d5ba93eb6d5c3fc95058d31 to your computer and use it in GitHub Desktop.
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