The following (logical) operators can be used in the “Set Variable” object or to build logical expressions in the “IF” statement:
prefix operators:
+ positive
- negative
! logical negation
arithmetic operators:
* multiplication
/ division
+ addition
- subtraction
equality operators:
== equal to
!= not equal to
relational operators:
> greater than
< less than
<= greater than or equal to
>= less than or equal to
logical operators:
&& and
|| or
|