Syntax help: vbscript equivalent of break
Java version
for(int i=0; i<10; i++) {
if (condition)
continue; // that gets to next iteration
doWhatever();
}
How about the vbscript? Any keyword for that?
For i = 0 to 10
if (condition) then
????? ' what to put???
End if
doWhatever
Next
|