User Guide
[] (array access) 103
Description
Operator (arithmetic compound assignment); assigns expression1 the value of expression1 /
expression2. For example, the following two statements are equivalent:
x /= y
x = x / y
For more information, see “Operator precedence and associativity” on page 32.
Example
The following code illustrates using the division assignment (/=) operator with variables and
numbers:
var x:Number = 10;
var y:Number = 2;
x /= y;
trace(x); // output: 5
See Also
/ (division)
[] (array access)
Availability
Flash Player 4.
Usage
myArray = [a0, a1,...aN]
myArray[i] = value
myObject[propertyName]
Parameters
myArray
The name of an array.
a0, a1,...aN Elements in an array; any native type or object instance, including nested arrays.
i An integer index greater than or equal to 0.
myObject The name of an object.
propertyName A string that names a property of the object.
Returns
Usage 1: A reference to an array.
Usage 2: A value from the array; either a native type or an object instance (including an Array
instance).
Usage 3: A property from the object; either a native type or an object instance (including an Array
instance).