Created
April 20, 2019 06:59
-
-
Save MeetMartin/a6ab82124c1e6c2a10e48a84c19e0f55 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
| function simonSays(arg) { | |
| let result = arg.trim(); | |
| result = `Simon Says: ${result}`; | |
| return result; | |
| } | |
| simonSays(' Jump! '); // Simon Says: Jump! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment