Tagged Questions
1
vote
3answers
138 views
Continue Statement in a Java Function
I want to create logic such that: if s2 is null the debugger skips all the complex string manipulation and returns null instead of s1 + s2 + s3 as seen in the first if block. Am I wrong somewhere?
...
0
votes
6answers
476 views
Using continue in a do-while loop
MDN states:
When you use continue without a label, it terminates the current iteration of the innermost enclosing while, do-while or for statement and continues execution of the loop with the next ...
12
votes
4answers
14k views
“Continue” (to next iteration) on VBScript
A colleague and I were trying to figure out a way of doing the equivalent of a "continue" statement within a VBScript "For/Next" loop.
Everywhere we looked we found people had no way to do this in ...