• Uncategorised

else

else Used with IF.
else is used with IF. The statements after the else are executed
if all the preceding IF and ELSEIF expressions are false.

The general form of the IF statement is
IF expression
statements
ELSEIF expression
statements
ELSE
statements
END

See also if, elseif, end.

You may also like...