Created
September 23, 2017 23:03
-
-
Save RachelSa/2248b029ccc8c42724ad4c39425e16f6 to your computer and use it in GitHub Desktop.
This file contains 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
function concat(first, last){ | |
return `${first} ${last}` | |
} | |
function greet(f, l){ | |
console.log(`Hi, ${concat(f, l)}`) | |
} | |
greet("Gabi", "Granger") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment