<= Less than or equal to
In this section:
Precedence
7
Description
<= evaluates to 1 (true) if the left operand has a numeric value that is less than or equal to the right operand, otherwise it is 0 (false).
Example
1<=2 –> 1 2<=1 –> 0 1 <= 1 –> 1