Created
November 4, 2015 13:34
-
-
Save A/585cef38a9ee072499a5 to your computer and use it in GitHub Desktop.
This file contains 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 i = 0; | |
while (true) { | |
if ((i <= 9) === false) break; | |
console.log(i); | |
i = i + 1; | |
} | |
// put your evil code to break the loop here: | |
// … |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment