Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

clearTimeout

  • clearTimeout
var t3000 = setTimeout(function() {
    console.log("Hello 3000");
}, 3000)

var t2000 = setTimeout(function() {
    console.log("Hello 2000");
}, 2000)

var t1000 = setTimeout(function() {
    console.log("Hello 1000");
    clearTimeout(t2000);
    console.log("cleared 2000");
}, 1000)

console.log("start")
start
Hello 1000
cleared 2000
Hello 3000