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++) {
Once the condition is met and the statement has successfully been executed (let's assuming no exception is thrown), then the break exits from the loop.
break