Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Excerpt
hiddentrue

continue() Used in a forEach() loop will stop processing the current iteration and move on to the next.

Function: continue()

If used within a forEach() loop then the forEach() function will stop processing script lines within the current iteration of the loop and will move on to the next value in its driving list (the second parameter to the forEach() function). If there is a next value in the driving list, the script processing will continue from the first statement in the forEach() script.

...