Sep 24, 2024
console.dir(document) to view properties and methods attached to the document object.document.domaindocument.URLdocument.title (can be changed)document.body and document.headdocument.all (HTML collection of all items in the document)..textContent, .innerText, and .innerHTML to manipulate content..style property to change CSS styles (e.g., element.style.color)..textContent: ignores styling.innerText: respects styling.innerHTML: allows HTML content.document.all as it can lead to errors when the DOM changes.