Skip to content

Instantly share code, notes, and snippets.

@rodolphonetto
Last active October 18, 2020 23:56
Show Gist options
  • Save rodolphonetto/09d5ea4feded369c253b7724cd27d447 to your computer and use it in GitHub Desktop.
Save rodolphonetto/09d5ea4feded369c253b7724cd27d447 to your computer and use it in GitHub Desktop.
Function declaration
function printName(firstName, lastName) {
console.log(`${firstName} ${lastName}`)
}
printName('John','Doe') //console.log "John Doe"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment