AI Features

Break and Continue

Learn about the usage of break and continue keywords.

We'll cover the following...

Introduction

We can use break or continue inside the loops:

  • break exits the closest loop it is in and continues with the next command,
  • continue skips out from the loop body and jumps back to the condition of the loop.

Example: sum ...