Skip to content

Instantly share code, notes, and snippets.

View alexgwolff's full-sized avatar
🏠
Working from home

Alex Godoy Wolff alexgwolff

🏠
Working from home
View GitHub Profile
@irazasyed
irazasyed / setTimeout-mem-leak.js
Last active July 29, 2024 10:54
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() {