Ask Question
5 September, 11:59

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.

+5
Answers (1)
  1. 5 September, 12:19
    0
    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);
Know the Answer?
Not Sure About the Answer?
Find an answer to your question ✅ “Write a setInterval () function that increases the count by 1 and displays the new count in counterElement every 400 milliseconds. Call ...” in 📘 Computers and Technology if you're in doubt about the correctness of the answers or there's no answer, then try to use the smart search and find answers to the similar questions.
Search for Other Answers