2011

Table Of Contents
DescriptionComparison Operator
Greater than or equal to>=
Boolean AND&&
Boolean OR||
Boolean NOT!
Operator Precedence
When you combine several operators in a single expression, the operations
are performed in the following order.
DescriptionOperatorOrder
Boolean NOT!1
Negation (as in -1)-2
Multiplication, division, exponentiation,
and modulus
*, /, ^, and %3
Addition and subtraction+ and -4
Comparison<, <=, >, and >=5
Equivalence== and !=6
Boolean AND&&7
Boolean OR||8
Math Functions
DescriptionFunction
Returns the absolute value of a given number.Abs (number)
Returns the sign of the given number.Sign (number)
Returns a number to the power of an exponent.Pow (number, power)
Operator Precedence | 747