< (numeric less than)

Availability

Flash Lite 1.0.

Usage

expression1 < expression2

Operands

expression1, expression2 Numbers.

Description

Operator (comparison); compares two expressions and determines whether expression1 is less than expression2; if so, the operator returns true. If expression1 is greater than or equal to expression2, the operator returns false. The < (less than) operator is a numeric operator.

Example

The following examples show true and false results for both numeric and string comparisons:

trace (3 < 10);        // output: 1(true)

trace (10 < 3);    // output: 0(false)

See also

lt (string less than)