Language Reference-= Operator


Description
Used to subract the value of an expression from a variable.

Syntax

result -= expression

The -= operator syntax has these parts:

Part Description
result Any numeric variable.
expression Any numeric expression.

Remarks

Using the -= operator is exactly the same as doing the following:

result = result - expression

The -= operator is the arithmetic subtraction operator used to find the difference between two numbers.

As for all arithmetic operators, JScript will generate runtime errors for every case in the table below where an E is indicated:

 objasnsnumboolundefnull
objNENNNEE
asEEEEEEE
nsNENNNEE
numNENNNEE
boolNENNNEE
undefEEEEEEE
nullEEEEEEE

obj = Object, as = Alphanumeric String, ns = Numeric String, num = Number, bool = Boolean, undef = Undefined, null = Null value.