<aside> 💡 When the 2nd countdown finishes , start the 3rd countdown from 10 to 0 for the 3rd pose picture
</aside>
<h1 id='timerText'class="text-center my-5"></h1>
let count3 = 10;
function countdown3(){
var timer3 = setInterval(function(){
if(count3 < 0){
clearInterval(timer3);
document.getElementById('timerText').innerHTML = 'Done!';
picture3()
}
else{
document.getElementById('timerText').innerHTML = count3
console.log(count3);
count3--
}
},1000 )
}
<button>
because we don't want the countdown to be interrupted once started
setInterval()
method to variable timer3
this is because we will use the clearInterval()
method and pass in timer3
which references the setInterval()
function as an argumentSetInterval():
if
conditional checks if variable count1 is less than 0. If true, then use the clearInterval() method that takes timer3
as an argument, which references the setInterval()
function. We also want to let the user that the countdown is over so we add the string "Next Pose" to the innerHTML property of the DOM element with id of 'timerText'. And lastly since the countdown is over we called function picture3() which will click a picture of the current pose.