Skip to content

Instantly share code, notes, and snippets.

@calendee
Created September 21, 2018 12:01
Show Gist options
  • Select an option

  • Save calendee/2687c9b373c9f29f44818f941f6892de to your computer and use it in GitHub Desktop.

Select an option

Save calendee/2687c9b373c9f29f44818f941f6892de to your computer and use it in GitHub Desktop.
const combineNames = (first, last) => {
console.log(first, last);
return (
`${first} ${last}`
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment