🏠 Go back to the homepage How to change a DOM node value Given a DOM element, how do you change its value? Published Oct 23 2018 Change the value of the innerText property: element.innerText = 'x' To lookup the element, combine it with the Selectors API: document.querySelector('#today .total') Download my free JavaScript Beginner's Handbook!