SwVitaliy

Untitled

May 12th, 2012
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. a = {};
  2. >Object
  3. a.a = undefined;
  4. >undefined
  5. a.hasOwnProperty('a')
  6. >true
  7. a.hasOwnProperty('b')
  8. >false
  9. a['a']
  10. >undefined
  11. a['b']
  12. >undefined
Advertisement
Add Comment
Please, Sign In to add comment