JSFiddle - React, Tailwind, and code Playground
by Will Stott
HTML
<span id="hello">hello :)</span><div>hi</div>
JavaScript
const span = document.getElementById('hello');
setInterval(() => {
span.innerText = "woah " + Date.now();
}, 10);
by Will Stott
<span id="hello">hello :)</span><div>hi</div>
const span = document.getElementById('hello');
setInterval(() => {
span.innerText = "woah " + Date.now();
}, 10);