Skip to content

Instantly share code, notes, and snippets.

@NyaGarcia
Last active March 5, 2021 15:18
Show Gist options
  • Save NyaGarcia/000f9bc40bcc565bb50f22a40a67afa9 to your computer and use it in GitHub Desktop.
Save NyaGarcia/000f9bc40bcc565bb50f22a40a67afa9 to your computer and use it in GitHub Desktop.
const choosePokemonArrow2 = pokemon => {
console.log("Logging");
return `I choose you ${pokemon}!`;
};
console.log(choosePokemonArrow2("Bulbasaur"));
/* Output:
Logging
I choose you Bulbasaur!
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment