continue — keyword to pass control to the next iteration of a loop
Inside a for
or while
loop, the command
continue
passes control to the next iteration of the loop
in which it appears, skipping any remaining statements between
this instruction and the loop's end
instruction.