The script engine provides the following operators for use in expressions and tests. The table below lists them:
Operation | Description |
+ | Addition |
- | Subtraction |
* | Multiply |
/ | Division |
|| | Logical Or |
&& | Logical And |
> | Greater than |
>= | Greater than or equal to |
< | Less than |
<= | Less than or equal to |
== | Equal to |
<> | Not equal to |
@ | Dereferences a variable to it's index number |