|
Usage-- Lingo syntax
expression1 >= expression2
// JavaScript syntax
expression1 >= expression2
DescriptionComparison operator;
compares two expressions and determines whether expression1 is
greater than or equal to expression2 (TRUE),
or whether expression1 is less than expression2 (FALSE).
This
operator can compare strings, integers, floating-point numbers,
rects, and points. Be aware that comparisons performed on rectangles
or points are handled as if the terms were lists, with each element
of the first list compared to the corresponding element of the second
list.
This is a comparison operator with a precedence level
of 1.
|
|
|