Write a setInterval() function that increases the count by 1 and displays the new count in counterElement every 400 milliseconds. Call clearInterval() to cancel the interval when the count displays 3.

Respuesta :

Answer:

var count = 0;

var counterElement = document.getElementById("counter");

counterElement.innerHTML = count;

var interval = setInterval(function () {

   count++;

   counterElement.innerHTML = count;

   if (count === 3) {

       clearTimeout(interval);

   }

}, 400);

ACCESS MORE