continue break return の違い

continue : ループ処理の中で条件合致の場合、現在のループをスキップする

break: ループ処理の中で条件合致の場合、ループ終了する

return: 関数を終了する