Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. var user ={
  2. name: 'vijay',
  3. mail: 'vijaymuniswamy9@gmail.com',
  4. phone: '408-644-3675'
  5. }
  6. console.log(user.name + "----"+ user.mail); //noraml usage
  7.  
  8. var {name,mail} = user; // Destructuring objects
  9. console.log(name + "----"+ mail); //noraml usage
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement