Answers for "countdown seconds in one minutes in javascript"

0

javascript countdown 10 seconds

var timeleft = 10;
var downloadTimer = setInterval(function(){
  if(timeleft <= 0){
    clearInterval(downloadTimer);
  }
  document.getElementById("progressBar").value = 10 - timeleft;
  timeleft -= 1;
}, 1000);
<progress value="0" max="10" id="progressBar"></progress>
Posted by: Guest on May-08-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

Code answers related to "countdown seconds in one minutes in javascript"

Browse Popular Code Answers by Language