<aside> 💡 When the 2nd countdown finishes , start the 3rd countdown from 10 to 0 for the 3rd pose picture

</aside>

Notes

Code

  1. The DOM element wherein the countdown will be displayed
<h1 id='timerText'class="text-center my-5"></h1>
  1. Global variable assigned to the number 10 for the 3rd countdown
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 )
}
  1. countdown3()