Guest User

Untitled

a guest
Oct 19th, 2018
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. const user = {
  2. name: {
  3. first_name: 'Raka',
  4. last_name: 'Pratama'
  5. },
  6. age: '21'
  7. }
  8. const { name: { last_name } } = user
  9. console.log(last_name)
  10. ---
  11. //Pratama
Add Comment
Please, Sign In to add comment