Last active
October 18, 2020 23:56
-
-
Save rodolphonetto/09d5ea4feded369c253b7724cd27d447 to your computer and use it in GitHub Desktop.
Function declaration
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
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