What if we have an if statement inside a for loop, would it stop the loop or the if condition...
Example:
for (int i = 0; i < array.length; i++) {
for (int i = 0; i < array.length; i++) { jumpIf: if (condition) { statement; break jumpIf; } }