<= operator

Synopsis
This operator returns whether the first value is less than or equal to the second value.
Variations
Value1 <= Value2
Returns whether the first value is less than or equal to the second value.
Parameters
Value1

Specifies the first value to be compared

Supported types: Numeric.
Value2

Specifies the second value to be compared

Supported types: Numeric.
Returns
Returned types: Boolean.
Examples
1.

The following example returns False.

10<=4