Skip to content

Instantly share code, notes, and snippets.

@rxluz
Last active January 19, 2019 07:55
Show Gist options
  • Select an option

  • Save rxluz/c16f9bc8c428696493ded595b5a503c1 to your computer and use it in GitHub Desktop.

Select an option

Save rxluz/c16f9bc8c428696493ded595b5a503c1 to your computer and use it in GitHub Desktop.
JS Design Patterns: Factory Functions, see more at: https://medium.com/p/2adfe878e949
const greetRicardo = {
sayHello() {
return `Hello Ricardo!`;
},
sayGoodbye() {
return `Goodbye Ricardo!`;
},
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment