Which of these keywords can we use to stop a loop or skip an iteration?
Good work! While the break
keyword will interrupt a loop, continue
will only skip an iteration.
Whoops! While the break
keyword will interrupt a loop, continue
will only skip an iteration.