<=

Returns true if the value of the first item is less than or equal to the value of the second item.

Syntax

valueA <= valueB

Example

var foo = 3;
if (foo <= 5)
    return true; //Returns true because foo == 3.
text_javascript aptana_docs