Skip to content

Instantly share code, notes, and snippets.

@RachelSa
Created September 23, 2017 23:03
Show Gist options
  • Save RachelSa/2248b029ccc8c42724ad4c39425e16f6 to your computer and use it in GitHub Desktop.
Save RachelSa/2248b029ccc8c42724ad4c39425e16f6 to your computer and use it in GitHub Desktop.
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