What is the difference between a break statement and a continue statement?

Q

What is the difference between a break statement and a continue statement?

✍: Guest

A

A break statement results in the termination of the statement to which it applies (switch, for, do, or while). A continue statement is used to end the current loop iteration and return control to the loop statement.

2012-10-26, 2081👍, 0💬