Comparison Operators
Use comparison operators to indicate the relationship that one item has to another in a conditional statement.
In the conditional statement
if
ffmFrdCard.Score is larger than 550,
is larger than is the comparison operator.
The following table lists the available operators.
| Operator | Usage |
|---|---|
| + | addition |
| - | subtraction |
| * | multiplication |
| / | division |
| > | greater than |
| < | less than |
| = | equal to |
| >= | greater than or equal to |
| <= | less than or equal to |
| <> | not equal to |