Last active
January 19, 2019 07:55
-
-
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
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 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