Skip to content

Instantly share code, notes, and snippets.

@MattCrl
Created July 9, 2018 19:02
Show Gist options
  • Select an option

  • Save MattCrl/1fb243173f55fd25c8663fc60522626c to your computer and use it in GitHub Desktop.

Select an option

Save MattCrl/1fb243173f55fd25c8663fc60522626c to your computer and use it in GitHub Desktop.
const address = {
city: "Orléans",
state: "FR",
zip: 45000
};
const sportList = ['Football', 'BasketBall']
const otherSportList = ['Boxe', 'Judo']
function display({city}, [...sports] = ['Course à pied', 'Vélo']) {
return `Dans la ville de ${city} on pratique ce(s) sport(s) : ${sports}`;
}
console.log(display(address, [sportList, otherSportList]));
console.log(display(address))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment