Skip to content

Instantly share code, notes, and snippets.

@MeetMartin
Created April 20, 2019 06:59
Show Gist options
  • Select an option

  • Save MeetMartin/a6ab82124c1e6c2a10e48a84c19e0f55 to your computer and use it in GitHub Desktop.

Select an option

Save MeetMartin/a6ab82124c1e6c2a10e48a84c19e0f55 to your computer and use it in GitHub Desktop.
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