Skip to content

Instantly share code, notes, and snippets.

@Jiert
Last active October 5, 2015 18:22
Show Gist options
  • Save Jiert/f6b6ff481c37264daf56 to your computer and use it in GitHub Desktop.
Save Jiert/f6b6ff481c37264daf56 to your computer and use it in GitHub Desktop.
ES6 Factory Function example
const dog = () => {
const sound = 'woof'
return {
talk: () => console.log(sound)
}
}
const sniffles = dog()
sniffles.talk() // "woof"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment