break to exit the current code loop. Opposite of Continue Example while (true){ if (x % 2 == 0){ continue; } x--; }