Step 6: Breaking Out & Skipping (Break/Continue)

Action:
  • Explain the 'Break' and 'Continue' blocks.

Speaker Notes:

"What if something goes wrong during a loop? The Break block is your 'Emergency Exit'—it stops the loop immediately. The Continue block is different: it’s like saying 'skip this one and move to the next'. For example, if a sensor detects a defective part, we can 'continue' to the next item without picking the bad one."