Last active
February 28, 2018 13:34
-
-
Save SaschaHeyer/6b0f52403e92106604a9b9463fa0c87f to your computer and use it in GitHub Desktop.
spead
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
| let beers = ['Bitburger','Heineken']; | |
| function logBeers (firstParameter, secondParameter) { | |
| return console.log(`${firstParameter} ${secondParameter}`); | |
| } | |
| logBeers(...beers); // output: Bitburger Heineken |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment