Skip to content

Instantly share code, notes, and snippets.

@DavidMikeSimon
Last active August 29, 2015 14:04
Show Gist options
  • Select an option

  • Save DavidMikeSimon/84f3508c6665c4d5a4c4 to your computer and use it in GitHub Desktop.

Select an option

Save DavidMikeSimon/84f3508c6665c4d5a4c4 to your computer and use it in GitHub Desktop.
function mystery() {
var timeout = setTimeout(function() { console.log("foo"); }, 1);
reallySlowFunction();
clearTimeout(timeout);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment