Answers for "2 sec counter js"

-1

how to count seconds in javascript

var seconds = 0;
var el = document.getElementById('seconds-counter');

function incrementSeconds() {
    seconds += 1;
    el.innerText = "You have been here for " + seconds + " seconds.";
}

var cancel = setInterval(incrementSeconds, 1000);
Posted by: Guest on April-06-2020

Browse Popular Code Answers by Language