Last active
November 23, 2016 12:48
-
-
Save brunokrebs/13f72015d40b953525e0ca64c99ca7b7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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