Blog Post #39: Skipping Ahead: Using the continue Statement
In Post #38, we learned how to use the break statement to exit a loop entirely. It’s our “emergency exit” when we’ve found what we’re looking for or need to stop the whole process immediately. But what if we don’t want to end the whole loop? What if we simply want to skip the current … Read more