<= (numeric less than or equal to)

Flash Lite 1.0.

Usage

expression1 <= expression2

Operands

expression1, expression2 Numbers.

Description

Operator (comparison); compares two expressions and determines whether expression1 is less than or equal to expression2. If it is, the operator returns true; otherwise, it returns false. This operator is for numeric comparison only.

Example

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

trace(5 <= 10);        // output: 1(true)
trace(2 <= 2);        // output: 1(true)
trace (10 <= 3);        // output: 0 (false)

See also

le (string less than or equal to)