Skip to content

Instantly share code, notes, and snippets.

@sandrabosk
Created April 28, 2020 21:15
Show Gist options
  • Save sandrabosk/f0ea7b383f7b1e19561206bda9b8fba9 to your computer and use it in GitHub Desktop.
Save sandrabosk/f0ea7b383f7b1e19561206bda9b8fba9 to your computer and use it in GitHub Desktop.
// ************************************************
// ******* Destructuring function parameters *****
// ************************************************
function getFullName(user) {
return `${user.firstName} ${user.lastName}`;
}
getFullName({ firstName: 'ana', lastName: 'martinez' }); // => ana martinez
// comment out the previous when demo the next:
function getFullName({ firstName, lastName }) {
return `${firstName} ${lastName}`;
}
getFullName({ firstName: 'ana', lastName: 'martinez' }); // => ana martinez
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment