Operators control how VBScript handles values. There are four basic types of operators:
arithmetic (+, - ), logical (And, Or, Not), relational (=, <>), and precedence (using parentheses to order how VBScript evaluates an expression). If you do not use parentheses, the following list shows the order of arithmetic operations:
- Negation
- Exponation
- Multiplication and division
- Integer division and remainder (Mod) operation
- Addition and Subtraction