Skip to content

Instantly share code, notes, and snippets.

@jschwarty
Last active January 4, 2017 22:31
Show Gist options
  • Save jschwarty/868e63da9325fcd6511fad480c324a02 to your computer and use it in GitHub Desktop.
Save jschwarty/868e63da9325fcd6511fad480c324a02 to your computer and use it in GitHub Desktop.
JavaScript object destructuring in function signature
function justDoIt(color, { size, model }) {
console.log(`Laced up the size ${size} ${model} kicks (${color})`);
}
let shoe = {
size: 9.5,
model: 'Air Jordan Retro 4'
};
justDoIt('black', shoe);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment