0 votes
in JavaScript by
What is the purpose of clearTimeout method?

1 Answer

0 votes
by

The clearTimeout() function is used in javascript to clear the timeout which has been set by setTimeout()function before that. i.e, The return value of setTimeout() function is stored in a variable and it’s passed into the clearTimeout() function to clear the timer.

For example, the below setTimeout method is used to display the message after 3 seconds. This timeout can be cleared by the clearTimeout() method.

<script>
var msg;
function greeting() {
   alert('Good morning');
}
function start() {
  msg =setTimeout(greeting, 3000);

}

function stop() {
    clearTimeout(msg);
}
</script>

Related questions

0 votes
asked Oct 6, 2023 in JavaScript by GeorgeBell
0 votes
asked Oct 24, 2023 in JavaScript by DavidAnderson
...