Operators and Expressions
-
Terminology
An operator is used to transform one or more values into a single resultant value. The values to which the operator applies are referred to as operand...
-
Operators
Arithmetic Operators Operator Description + Addition - Subtraction or unary negation * Multiplication / Division % ...
-
Coercion
You can set up scripting expressions that involve values of different types without the compiler raising an exception. Instead, one of the types will automat...
-
Operator Precedence
The precedence of the operators determines which operators are evaluated before others in complex expressions where several operators are involved.For...
-
Short Circuit Evaluation
In expressions involving the logical operators and (&&) and or (||), code will execute faster if you use a feature called short circuit evaluation. When the ...