Description
Compare the value on the left side of the operator with the value on the right side of the operator. When the left side is smaller than or equal to the right side, return true.
Syntax
x <= y;
//this returns true when x is smaller than or equal to y.
Example Code
if (x <= y) { // see if x is smaller than or equal to y
// do something if x is smaller than or equal to y
}