User Guide
82 ActionScript Language and Syntax
Multiplicative operators
The multiplicative operators take two operands and perform multiplication, division, or
modulo calculations.
All the multiplicative operators, as listed in the following table, have equal precedence:
Additive operators
The additive operators take two operands and perform addition or subtraction calculations.
All the additive operators, as listed in the following table, have equal precedence:
Bitwise shift operators
The bitwise shift operators take two operands and shift the bits of the first operand to the
extent specified by the second operand. All the bitwise shift operators, as listed in the
following table, have equal precedence:
delete
Deletes a property
typeof
Returns type information
void
Returns undefined value
Operator Operation performed
*
Multiplication
/
Division
%
Modulo
Operator Operation performed
+
Addition
-
Subtraction
Operator Operation performed
<<
Bitwise left shift
>>
Bitwise right shift
>>>
Bitwise unsigned right shift
Operator Operation performed