Skip to content
Prev 178133 / 398502 Next

simple for loop question - how do you exit?

To "break" out of a loop early, use the "break" command (or rethink your logic and use a different type of loop, often if you will be commonly leaving the loop, a while loop may make more sense than a for loop).