Go to the first, previous, next, last section, table of contents.


Control Statements

The control statements are as follows:

if (condition) statement [ else statement ]
while (condition) statement
do statement while (condition)
for (expr1; expr2; expr3) statement
for (var in array) statement
break
continue
delete array[index]
delete array
exit [ expression ]
{ statements }

See section Control Statements in Actions.


Go to the first, previous, next, last section, table of contents.