Created
January 20, 2022 18:35
-
-
Save mr-pascal/a3b2e89e786425cd45984540b324e78e to your computer and use it in GitHub Desktop.
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
| module.exports = { | |
| // Adds 'Hello' in front of the input string and returns it | |
| myFunc: (input) => { | |
| return `Hello ${input}` | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment