Skip to content

Instantly share code, notes, and snippets.

@EugeneKostrikov
Created July 21, 2016 10:23
Show Gist options
  • Save EugeneKostrikov/ac2ee955efe6b54cb66c90c3cd0ce339 to your computer and use it in GitHub Desktop.
Save EugeneKostrikov/ac2ee955efe6b54cb66c90c3cd0ce339 to your computer and use it in GitHub Desktop.
var i = setInterval(function(){
setInterval(function(){
console.log('reached');
}, 100);
}, 100);
setTimeout(function(){
clearInterval(i);
}, 101);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment