cleartimeout example

Example 1: js cleartimeout

var myVar;

function myFunction() {
  myVar = setTimeout(function(){ alert("Hello"); }, 3000);
}

function myStopFunction() {
  clearTimeout(myVar);
}

Example 2: clear timeout in function js

var timer;
function endAndStartTimer() {
  window.clearTimeout(timer);
  var millisecBeforeRedirect = 10000; 
  timer = window.setTimeout(function() {
    alert('Hello!');
  }, millisecBeforeRedirect); 
}

Example 3: clear timeout js

The clearTimeout() method of the WindowOrWorkerGlobalScope mixin cancels a timeout previously established by calling setTimeout().