Kommentar
Åtkomst till den här sidan kräver auktorisering. Du kan prova att logga in eller ändra kataloger.
Åtkomst till den här sidan kräver auktorisering. Du kan prova att ändra kataloger.
Multiplies the value of a variable by the value of an expression and assigns the result to the variable.
Syntax
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
Multiplication Operator (*) (Windows Scripting - JScript)
Operator Precedence (Windows Scripting - JScript)
Operator Summary (Windows Scripting - JScript)