Break Statement — exits the loop prematurely, even if the condition has not been met.
for (int i = 1; i <= 10; i++) { if (i == 5) { break; // Exit the loop when i equals 5 } System.out.println("Iteration: " + i); }
Clickable & Draggable!