Skip to content

Instantly share code, notes, and snippets.

@A
Created November 4, 2015 13:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save A/585cef38a9ee072499a5 to your computer and use it in GitHub Desktop.
Save A/585cef38a9ee072499a5 to your computer and use it in GitHub Desktop.
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