Guest User

Untitled

a guest
Jun 19th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. const address = {
  2. city: "Lyon",
  3. state: "FR",
  4. zip: 69001
  5. };
  6.  
  7. const sportList = ['Football', 'BasketBall'];
  8. const otherSportList = ['Boxe', 'Judo'];
  9.  
  10. sportList.push(...otherSportList);
  11.  
  12. const {city} = address;
  13.  
  14. function display(a=city, ...b) {
  15. console.log(`${a} is where I can play ${b}`);
  16.  
  17. };
  18.  
  19. display (city, sportList);
Add Comment
Please, Sign In to add comment