metadict_Notizen zu Sprachfeatures aus JS 1.7/1.8_1


/ Published in: JavaScript
Save to your folder(s)



Copy this code and paste it in your HTML
  1. var people = [{
  2. name: "Mike Smith",
  3. family: {
  4. mother: "Jane Smith",
  5. father: "Harry Smith",
  6. sister: "Samantha Smith",
  7. grandparents: {
  8. grandpa: "Tony Smith",
  9. grandma: "Lilly Smith"
  10. }
  11. },
  12. age: 35
  13. },
  14. {
  15. name: "Tom Jones",
  16. family: {
  17. mother: "Norah Jones",
  18. father: "Richard Jones",
  19. brother: "Howard Jones",
  20. grandparents: {
  21. grandpa: "Tom Jones",
  22. grandma: "Kunigunde Jones"
  23. }
  24. },
  25. age: 25
  26. }
  27. ];

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.