April/28/2026
1.What is a dom ?
DOM from is documents object model. it is used for responding website create
2.What is Document Object ?
document is the root object to access the page.
3.Tree Structure ?
The HTML page is represented as nodes (elements, text, attributes).
4.Who to modify html page ?
You can add, remove, or update elements, styles, and content. used like object.
5.How do you select elements in the DOM?
Document.getElementById, Document.getElementByclass ect..
What is the difference between DOM and BOM, and how do window and document relate? (TBD)
What is the difference between NodeList and HTMLCollection?(TBD)
Top comments (0)