Was this helpful?
<=
as in variable <= expression".
The less than or equal ( <= ) comparison operator is used in comparison expressions. The expression returns true if the variable has a lesser or equal value to that of the expression after evaluation; false, otherwise. The comparison is numeric unless both sides evaluate as strings. For more information, see “Comparison Expressions”.
Example
if ( average <= 76 ) if (average >= 70) grade = "C"; # Score of 70-76 is a C
Last modified date: 02/09/2024