What is the use of break and continue?
Break Statement Break Statement ā This statement is used to “jumps out” of a loop. The break statement breaks the loop and continues executing the code after the loop (if any). Continue Statement Continue Statement ā This statement is used to “jumps over” one iteration in the loop. The continue statement breaks one iteration (in … Read more