Skip to content

Instantly share code, notes, and snippets.

@brunokrebs
Last active November 23, 2016 12:48
Show Gist options
  • Save brunokrebs/13f72015d40b953525e0ca64c99ca7b7 to your computer and use it in GitHub Desktop.
Save brunokrebs/13f72015d40b953525e0ca64c99ca7b7 to your computer and use it in GitHub Desktop.
var countTo_100_000 = function() {
for (var i=0; i<=100000; i++) {
console.log(i);
}
};
var logHelloWorld = function () {
console.log("Hello World");
};
setTimeout(logHelloWorld, 1);
console.log("Start counting");
countTo_100_000();
console.log("Finished");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment