- return
The rest of the code inside the function is not executed after a return. You can also use return to return a value for external use.
- break
Out of the loop, the rest of the loop is no longer executed.
- continue
Out of the loop, the rest of the loop continues.