Datasets and Parameters › Process Parameters › Calculated Parameters › Statements › Iterative Statements › The break Statement
The break statement can be used to exit out of a loop, as illustrated in the following lines of code.
var l = 0; while (l < 10) { n = n++; if (n > 102) break; }