Skip to content

Instantly share code, notes, and snippets.

@mcenirm
Last active July 4, 2023 09:34
Show Gist options
  • Save mcenirm/4165198 to your computer and use it in GitHub Desktop.
Save mcenirm/4165198 to your computer and use it in GitHub Desktop.
clear all intervals (javascript)
(function(w){w = w || window; var i = w.setInterval(function(){},100000); while(i>=0) { w.clearInterval(i--); }})(/*window*/);
@hasanbisha
Copy link

i gotta say this is elegant

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment