Greater than operator
From Coderwiki
More actions
One common conditional operator is the greater than operator.
This operator will return true if the value on the left is greater than the value on the right of the operator.
Syntax
In most languages, the less than operator is represented by a > symbol.
Example
boolean a = 4 > 6; // false
boolean b = 6 > 5; // true