Created
January 5, 2017 03:21
-
-
Save casprwang/fb75315693e7451469ac9beba2560779 to your computer and use it in GitHub Desktop.
right one
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 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