Skip to content

Instantly share code, notes, and snippets.

@blackavec
Created January 21, 2020 08:22
Show Gist options
  • Save blackavec/5af7dc4054833f4aeb2e9d7b1c07cbb9 to your computer and use it in GitHub Desktop.
Save blackavec/5af7dc4054833f4aeb2e9d7b1c07cbb9 to your computer and use it in GitHub Desktop.
function testFor(obj) {
let i = 10
for(;;) {
if (i-- === 0)
return true
}
}
function testWhile(obj) {
let i = 10
while(true) {
if (i-- === 0)
return true
}
}
testFor();
testWhile();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment