Created
April 28, 2020 21:15
-
-
Save sandrabosk/f0ea7b383f7b1e19561206bda9b8fba9 to your computer and use it in GitHub Desktop.
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
// ************************************************ | |
// ******* 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