What does the continue statement do?
It skips the remaining code in the current iteration and jumps straight to the next iteration of the loop.
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.
No, a standard break only exits the innermost loop it is placed in. To break outer loops, some languages (like Java) support labeled breaks.
No, using break for an early exit (like stopping a search once the item is found) is a standard and highly recommended optimization.
Still have questions?
Browse all our FAQs or reach out to our support team
