-= (substraction assignment)
SWiSH Player Support
SWF4 or later - Supported Internally
Syntax
expression1
-=
expression2
Description
Identical to
expression1
=
expression1
-
expression2
.
Sample
a = 7 ;
a -= 3 ;
// a now has the value of 4 (7 - 3
)