/= (division assignment)
Top  Previous  Next


SWiSH Player Support
SWF4 or later - Supported Internally

Syntax
expression1 /= expression2

Arguments
None.

Returns
None.

Description
Identical to expression1 = expression1 / expression2.

Sample
a = 8
;
a /= 4
;
// a now has the value of 2, (8/4)