Advertisement
Guest User

Untitled

a guest
Aug 25th, 2019
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. const props = {foo: 1, bar: 2, qux: 3}
  2. const {foo, ...other} = props
  3.  
  4. console.log(foo) // 1
  5. console.log(other) // {bar: 2, qux: 3}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement