Loading…
let counter = 0;
function updateDisplay() {
counter++;
const now = new Date();
document.getElementById(“live-test”).innerHTML =
“LIVE TEST ” + counter +
“” + now.toLocaleTimeString() + ““; } updateDisplay(); setInterval(updateDisplay, 15000);
