do while

Availability

Flash Player 4.

Usage

do {
  statement(s)
} while (condition)

Parameters

condition The condition to evaluate.

statement(s) The statement(s) to execute as long as the condition parameter evaluates to true.

Returns

Nothing.

Description

Statement; executes the statements, and then evaluates the condition in a loop for as long as the condition is true.

See also

break, continue