Created
September 27, 2016 07:07
-
-
Save maxkoretskyi/969857439c23707d540a26ea41d20863 to your computer and use it in GitHub Desktop.
never ending loop
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
for (var i=1; 1/i > 0; i++) { | |
console.log("Count is: " + i); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment