What happens to the counter when continue is used in a for loop?
The continue statement jumps to the update step (e.g., i++), meaning the counter correctly increments before the next iteration begins.
Verify This Answer
Cross-check this information using these trusted sources:
More FAQs in The Role of Break and Continue Inside Loops
It immediately terminates the loop it is inside, preventing any further iterations, and resumes execution below the loop block.
It skips the remaining code in the current iteration and jumps straight to the next iteration of the loop.
No, a standard break only exits the innermost loop it is placed in. To break outer loops, some languages (like Java) support labeled breaks.
Still have questions?
Browse all our FAQs or reach out to our support team
