for Loop continue

JavaScript
The break statement "jumps out" of a loop.
The continue statement "jumps over" one iteration in the loop.
Source

Also in JavaScript: