Skip to content

Instantly share code, notes, and snippets.

@casprwang
Created January 5, 2017 03:21
Show Gist options
  • Save casprwang/5c91060147a26343dd6b6242c850f2ef to your computer and use it in GitHub Desktop.
Save casprwang/5c91060147a26343dd6b6242c850f2ef to your computer and use it in GitHub Desktop.
wrong one
const dog = () => {
const sound = 'woof'
return {
talk: () => console.log(sound);
}
}
const bark = dog()
bark.talk()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment