Multiplication Assignment Operator (*=) (JScript 5.6)
Multiplies the value of a variable by the value of an expression and assigns the result to the variable.
result *= expression
Arguments
- result
Any variable.
- expression
Any expression.
Remarks
Using the *= operator is exactly the same as specifying:
result = result * expression
Requirements
See Also
Reference
Multiplication Operator (*) (JScript 5.6)
Concepts
Operator Precedence (JScript 5.6)
Operator Summary (JScript 5.6)