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