Note:
For
switch statement:
It is located inside the statement. The
break statement jumps out of the
switch statement (the code execution moves behind the
switch statement).
For loop statement (
for,
while,
do...while):
It is located inside the cycle. The
break statement terminates the cycle (the code execution is moved to behind the cycle).
In the VBScript language is used the statement for this purpose
Exit.
Exit for statement:
JavaScriptSelect and copy to clipboard
var iRow;
for (iRow = 0; iRow <= 5; iRow++)
{
if (iRow == 3)
{
break;
}
Pm.Debug("iRow = " + iRow);
}
Exit while statement:
JavaScriptSelect and copy to clipboard
var iRow = 0;
while (iRow <= 5)
{
if (iRow == 3)
{
break;
}
Pm.Debug("iRow = " + iRow);
iRow++;
}
JavaScriptSelect and copy to clipboard
var iRow = 0;
do
{
if (iRow == 3)
{
break;
}
Pm.Debug("iRow = " + iRow);
iRow++;
} while (iRow <= 5);