Skip to content

Instantly share code, notes, and snippets.

@natasv
Created January 28, 2016 20:03
Show Gist options
  • Save natasv/69e48d33a54b30703f59 to your computer and use it in GitHub Desktop.
Save natasv/69e48d33a54b30703f59 to your computer and use it in GitHub Desktop.
const dog = () => {
const sound = 'woof'
return {
talk: () => console.log(sound)
}
}
const obj = dog();
obj.talk();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment