If you have nested an if block within a for loop beginning f…
If you have nested an if block within a for loop beginning for (let i = 0; i < myArray.length; i++) then the program execution will continue to the next statement after the for loop as soon as the condition in the if statement is met, whether or not you use a break statement.