Ask Question

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

+4
Answers (1)
  1. 17 March, 08:29
    0
    var count = 0;

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

    counterElement. innerHTML = count;

    var interval = setInterval (function () {

    count++;

    counterElement. innerHTML = count;

    if (count = = = 4) {

    clearTimeout (interval);

    }

    }, 100);
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 100 milliseconds. Call ...” in 📗 Computers & Technology if the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Search for Other Answers