Skip to content

Instantly share code, notes, and snippets.

@tyomo4ka
Created July 22, 2016 01:51
Show Gist options
  • Save tyomo4ka/296d4abcdf43a5c4a1e456ddc587ca93 to your computer and use it in GitHub Desktop.
Save tyomo4ka/296d4abcdf43a5c4a1e456ddc587ca93 to your computer and use it in GitHub Desktop.
(function() {
console.log(1);
setTimeout(function(){console.log(2)}, 1000);
setTimeout(function(){console.log(3)}, 0);
console.log(4);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment