Advertisement
Guest User

Untitled

a guest
Jul 20th, 2019
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. const contact = {
  2. person: 'Bai Gosho',
  3. phone: '0879999999'
  4. };
  5.  
  6. console.log(contact);
  7.  
  8. const { person, phone } = contact;
  9. console.log(person);
  10. console.log(phone);
  11.  
  12. const { person: personName, phone: personPhone } = contact;
  13. console.log(personName);
  14. console.log(personPhone);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement