An open API service indexing awesome lists of open source software.

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

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)