Previous Topic: Equality and Comparison OperatorsNext Topic: Keywords for Accessing Datasets


Operator Precedence

The CA Process Automation interpreted language operators follow standard computational precedence rules, as shown in the following table. Operators at the same level of precedence are executed from left to right.

Precedence

Operator

1

. () [ ]

2

++ -- - (unary) + (unary) !

3

* / %

4

+ (addition) - (subtraction) + (string concatenation)

5

< <= > >=

6

== != === !==

 

7

&&

8

||

9

?:

10

= *= /= %= += -=