continue skips the current iteration of a loop and proceeds to the next iteration.
Source Code
for (int i = 0; i < 5; i++) {
if (i == 3) {
continue; // Skip the rest of the code inside the loop for this iteration
}
System.out.println(i);
}