JavaScript » Comparison » <=

This is the less than or equal operator and returns true if the first operand is less than or equal to the second.

Examples

Code:
a <= 2
a <= 3
a <= b
Explanation:

These examples all return true.