Skip to content

Instantly share code, notes, and snippets.

@fercreek
Last active February 5, 2016 06:41
Show Gist options
  • Save fercreek/b6c746914687f19cb659 to your computer and use it in GitHub Desktop.
Save fercreek/b6c746914687f19cb659 to your computer and use it in GitHub Desktop.
const dog = () => {
const sound = 'woof'
return {
talk: () => console.log(sound)
}
}
const sniffles = dog()
sniffles.talk()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment