Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save rxluz/5b9f6f0db2333418d564df296acdd22c to your computer and use it in GitHub Desktop.
Save rxluz/5b9f6f0db2333418d564df296acdd22c to your computer and use it in GitHub Desktop.
function showNameAndAge({name = 'Ricardo', age = 32}){
return `Hello ${name}, you are ${age} years old`;
}
showNameAndAge({name: 'Ricardo', age: 32}); //right
showNameAndAge({age: 32, name: 'Ricardo'}); //also right!
showNameAndAge(); //also right!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment