- The break statement breaks out of the loop.

Example :- Jumps out of loop when "i" is 2


- continue will skip the single iteration in the loop 

Example :- Skips the iteration when "i" is 2