Add Code to HTML by Manipulating the DOM

PHOTO EMBED

Saved by @mishka #html #javascript

const randomElement = document.getElementById('someElement');
randomElement.innerHTML = '<p>changing the DOM</p>'
content_copyCOPY

The Document Object Model (DOM) is a representation of HTML that can be changed and manipulated with code. For us, that means we'll be able to write JavaScript code that dynamically changes our HTML in the browser.

https://www.makeschool.com/academy/track/web-dev-summer-academy-2018/build-a-game-of-concentration-with-javascript/client-side-javascript