Break continue
break
statement, without a label reference, can only be used to jump out of a loop or a switch block.
continue
statement, with or without a label reference, can only be used to skip one loop iteration.
Visit the following resources to learn more: