WLJS LogoWLJS Notebook

Continue

Continue[] goes to the next iteration of the nearest enclosing Do, For, While, or Until loop.

Examples

Skip even numbers:

Do[
  If[EvenQ[i], Continue[]];
  Print[i],
  {i, 1, 6}
]
(* prints 1, 3, 5 *)

Please visit the official Wolfram Language Reference for more details.

On this page