Created
March 5, 2021 15:01
-
-
Save NyaGarcia/699ba45dfb7634c5d8fd052a67d1730d to your computer and use it in GitHub Desktop.
Arrow function receiving multiple parameters
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 choosePokemonArrow = (firstPokemon, secondPokemon) => | |
`I choose ${firstPokemon} and ${secondPokemon}!`; | |
console.log(choosePokemonArrow("Squirtle", "Bulbasaur")); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment