Description
Operator (arithmetic compound assignment); assigns
. For example, the following two statements are equivalent:
expression2
x /= y
x = x / y
For more information, see
Example
The following code illustrates using the division assignment (
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
The name of an array.
myArray
a0, a1,...aN
An integer index greater than or equal to 0.
i
The name of an object.
myObject
propertyName
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).
"Operator precedence and associativity" on page
Elements in an array; any native type or object instance, including nested arrays.
A string that names a property of the object.
the value of
expression1
operator with variables and
/=)
expression1 /
32.
[] (array access)
103
Need help?
Do you have a question about the FLEX-FLEX ACTIONSCRIPT LANGUAGE and is the answer not in the manual?