https://github.com/jpnws/dom-exercises
JavaScript DOM API Exercises from Eloquent JavaScript
https://github.com/jpnws/dom-exercises
dom javascript
Last synced: 2 months ago
JSON representation
JavaScript DOM API Exercises from Eloquent JavaScript
- Host: GitHub
- URL: https://github.com/jpnws/dom-exercises
- Owner: jpnws
- Created: 2020-05-03T01:42:03.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-05-03T02:01:16.000Z (almost 5 years ago)
- Last Synced: 2025-01-12T11:46:03.926Z (4 months ago)
- Topics: dom, javascript
- Language: HTML
- Size: 9.77 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# JavaScript DOM Exercises
1. **Build a Table:** Given an array of objects, build an HTML table using JavaScript DOM API.
- 👨💻 [CODE](build-a-table.html)
- 📝 [Exercise Description](https://eloquentjavascript.net/14_dom.html#i_g/5UC3zznV)2. **Elements by Tag Name:** Recursively retrieve the tagName nodes from a given parent node.
- 👨💻 [CODE](elements-by-tag-name.html)
- 📝 [Exercise Description](https://eloquentjavascript.net/14_dom.html#i_VSftnyRTsV)3. **The Cat's Hat:** Improve the previous code to have the hat orbit in the opposite direction of the cat.
- 👨💻 [CODE](cats-hat.html)
- 📝 [Exercise Description](https://eloquentjavascript.net/14_dom.html#i_b/LAqZUqyo)