Sep 24, 2024
console.dir(document)
to view properties and methods attached to the document object.document.domain
document.URL
document.title
(can be changed)document.body
and document.head
document.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.