Advertisement
Guest User

Untitled

a guest
Feb 26th, 2015
176
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. console.log(activity) // it prints {name:'yoga',location:Object}
  2. console.log(activity.location) // it prints {name:'bogota',city:Object}
  3. console.log(activity.location.city) // it prints 1, not City Object.
  4. console.log(activity.location.city.name) // undefined, but City Object has name.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement