How to change a DOM node value

🆕 🔜 Check this out if you dream of running a solo Internet business 🏖️

Given a DOM element, how do you change its value?

Change the value of the innerText property:

element.innerText = 'x'

To lookup the element, combine it with the Selectors API:

document.querySelector('#today .total')