Last active
March 5, 2021 15:18
-
-
Save NyaGarcia/000f9bc40bcc565bb50f22a40a67afa9 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
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