Guest User

Untitled

a guest
May 21st, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. const items = ['car', 'bike', 'plane', 'boat'];
  2. const [car, ...transportation] = items;
  3.  
  4. console.log(car); // 'car'
  5. console.log(transportation); // ['bike', 'plane', 'boat']
Add Comment
Please, Sign In to add comment