vanilla js query body code example
Example 1: javascript find document body
const body = document.body;
Example 2: javascript queryselector
//Pretend there is a <p> with class "example"
const myParagraph = document.querySelector('.example');
//You can do many this with is
myParagraph.textContent = 'This is my new text';