Flash Lite 1.x ActionScript Language Reference |
|
|
|
| Flash Lite Operators > <= (numeric less than or equal to) | |||
Flash Lite 1.0.
expression1<=expression2
expression1, expression2 Numbers.
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.
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)
le (string less than or equal to)
|
|
|
|