Answers for "python count seconds"

1

python seconds counter

import time
start = time.time()
# your code
stop = time.time()
print("The time of the run:", stop - start)
Posted by: Guest on May-30-2020
-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