Answers for "javascript get total seconds"

0

js add seconds to current time

var t = new Date();
t.setSeconds(t.getSeconds() + 10);
Posted by: Guest on August-06-2021
3

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

Code answers related to "javascript get total seconds"

Code answers related to "Javascript"

Browse Popular Code Answers by Language