Subtracts the value of an expression from the value of a variable and assigns the result to the variable.
result -= expression
Using the -= operator is exactly the same as doing the following:
result = result expression
Version 1
- Operator | Operator Precedence | Operator Summary