De-I > do... while
do... whileSyntax
do {
statement
;
} while (
condition
);
Arguments
condition
The condition to evaluate.
statement
The statement to execute as long as condition
evaluates to true
.
Description
Action; executes the statements, and then evaluates the condition in a loop for as long as the condition is true.
Player
Flash 4 or later.
See also
break continue