DOM Concepts

What is the DOM?

window in the Browser

Accessing window

console.log(window.location.href);
console.log(location.href); // Same as above

document in the Browser

Accessing document

console.log(document.title); // Equivalent to `window.document.title`

Selecting Elements