Skip to content

Instantly share code, notes, and snippets.

@irazasyed
irazasyed / setTimeout-mem-leak.js
Last active November 14, 2023 23:43
JavaScript: setTimeout Memory Leak Prevention.
// https://developer.mozilla.org/en-US/docs/Web/API/window.setTimeout
var timeoutID;
delayedAlert();
function delayedAlert() {
timeoutID = window.setTimeout(slowAlert, 2000);
}
function slowAlert() {