Skip to content

Instantly share code, notes, and snippets.

@rxluz
Last active April 7, 2018 18:21
Show Gist options
  • Save rxluz/9d123e7caeb50979d32a50eb8edb73d3 to your computer and use it in GitHub Desktop.
Save rxluz/9d123e7caeb50979d32a50eb8edb73d3 to your computer and use it in GitHub Desktop.
function showNameAndAge(name, age){
return `Hello ${name}, you are ${age} years old`;
}
showNameAndAge('Ricardo', 32); //right
showNameAndAge(32, 'Ricardo'); //wrong
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment