+ 2
The âIfâ is confusing.
for (i = 0; i <= 10; i++) { if (i == 5) { break; } document.write(i + "<br />"); } Hello, isn't it the âIfâ is only executed with true? Then why it is still executed even tho the âiâ is equivalent to 10? And 10 isn't equal to 5. Please explain it to me. Thanks!
5 Answers
+ 5
Lemme translate that into pseudo code.
Setting i to value 0.
If i equals 5, stop.
Else, increment i.
Repeat this process until i reaches 10.
+ 4
Hey, have you actually tried running this to see it in action, I just did and it did what I expected. Try it for yourself and if you are still unsure I will try to explain where you may be slightly incorrect
+ 2
break is a build in function or method for (for loop, while loop, do loop) that stop running that section of code when called. {so no matter what's in here break; exits this bracket} sololearn has a section on this. should check it out.
+ 1
I alway place print statements around code I want to visually inspect while running. See the following:
for (i = 0; i <= 10; i++) {
if (i == 5) {
document.write("not 5a </br>");
//break;
continue;
document.write("not 5b </br>");
}
document.write(i + "<br />");
}
If you run the following code, you can see that âcontinueâ or âbreakâ will skip the line below it. However âbreakâ will exit the loop, while âcontinueâ will allow the loop to continue. If you really want to make sure that another loop will not execute you can set i =12;