1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <header>
- <h1>Literals</h1>
- </header>
- <body>
- <script>
- const cat =
- {
- "head":
- {
- "name": "cat's head",
- "ears":
- [
- {
- "name": "ear",
- "attrs":
- {
- "position": "left"
- }
- },
- {
- "name": "ear",
- "attrs":
- {
- "position": "right"
- }
- }
- ],
- "eyes": [{ "name": "eye", "attrs": { "position": "left" } }, { "name": "eye", "attrs": { "position": "right" } }],
- "mouth": "cat's"
- },
- "body":
- {
- "name": "cat's body",
- "paws":
- [
- { "name": "paw", "attrs": { "position": "left", "placement": "front" } },
- { "name": "paw", "attrs": { "position": "right", "placement": "front" } },
- { "name": "paw", "attrs": { "position": "left", "placement": "rear" } },
- { "name": "paw", "attrs": { "position": "right", "placement": "rear" } },
- ],
- "tail": "cat's tail"
- }
- }
- </script>
- </body>
|