-= (negation assignment)
Top  Previous  Next


Syntax
expression1 -= expression2

Description
Identical to expression1 = expression1 - expression2.

Sample
a = 7
;
a -= 3
;
// a now has the value of 4 (7 - 3
)