Skip to content

Instantly share code, notes, and snippets.

@DronRathore
Last active August 29, 2015 14:15
Show Gist options
  • Save DronRathore/b39b118ce828d3f23938 to your computer and use it in GitHub Desktop.
Save DronRathore/b39b118ce828d3f23938 to your computer and use it in GitHub Desktop.
setTimeout = setInterval
/*
Law: clearInterval = clearTimeout
*/
var a = setTimeout(function(){console.log(1)}, 100);
clearInterval(a);
var b = setInterval(function(){console.log(1)}, 100);
clearTimeout(b);
/*
Nothing will be logged on console!
We cleared the timers!
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment