Parameters & Returns
Parameters
This function takes no parameters.
Returns
Quick Summary
Skips the rest of the current loop iteration and continues with the next
Technical Exegesis...
Skips the rest of the current loop iteration and continues with the next. Jumps back to the loop's beginning, incrementing the counter if it's a For loop or re-evaluating the condition for While/Until loops. Use to skip processing for specific items without exiting the entire loop.