null_lookup_object.js 480 B

12345678910111213141516171819202122232425262728293031
  1. ({
  2. 'name': 'David',
  3. 'twitter': '@dasilvacontin',
  4. 'fobject': [
  5. {
  6. 'name': 'Flor',
  7. 'twitter': '@florrts'
  8. },
  9. {
  10. 'name': 'Miquel',
  11. 'twitter': null
  12. },
  13. {
  14. 'name': 'Chris',
  15. 'twitter': undefined
  16. }
  17. ],
  18. 'favorites': {
  19. 'color': 'blue',
  20. 'president': 'Bush',
  21. 'show': 'Futurama'
  22. },
  23. 'mascot': {
  24. 'name': 'Squid',
  25. 'favorites': {
  26. 'color': 'orange',
  27. 'president': undefined,
  28. 'show': null
  29. }
  30. }
  31. });