DOM - Document Object Model Javascript

Example

<!DOCTYPE html>
<html>
  <body>
    <h1 id="title">Hello World</h1>
  </body>
</html>
document.getElementByID("title").innerText = "New Title";

Why Dom is important?

Resources