hw07_01literals.html 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <header>
  2. <h1>Literals</h1>
  3. </header>
  4. <body>
  5. <script>
  6. const cat =
  7. {
  8. "head":
  9. {
  10. "name": "cat's head",
  11. "ears":
  12. [
  13. {
  14. "name": "ear",
  15. "attrs":
  16. {
  17. "position": "left"
  18. }
  19. },
  20. {
  21. "name": "ear",
  22. "attrs":
  23. {
  24. "position": "right"
  25. }
  26. }
  27. ],
  28. "eyes": [{ "name": "eye", "attrs": { "position": "left" } }, { "name": "eye", "attrs": { "position": "right" } }],
  29. "mouth": "cat's"
  30. },
  31. "body":
  32. {
  33. "name": "cat's body",
  34. "paws":
  35. [
  36. { "name": "paw", "attrs": { "position": "left", "placement": "front" } },
  37. { "name": "paw", "attrs": { "position": "right", "placement": "front" } },
  38. { "name": "paw", "attrs": { "position": "left", "placement": "rear" } },
  39. { "name": "paw", "attrs": { "position": "right", "placement": "rear" } },
  40. ],
  41. "tail": "cat's tail"
  42. }
  43. }
  44. </script>
  45. </body>