Notitie
Voor toegang tot deze pagina is autorisatie vereist. U kunt proberen u aan te melden of de directory te wijzigen.
Voor toegang tot deze pagina is autorisatie vereist. U kunt proberen de mappen te wijzigen.
Divides the value of a variable by the value of an expression and assigns the result to the variable.
Syntax
result /= expression
Arguments
result
Any numeric variable.expression
Any numeric expression.
Remarks
Using the /= operator is exactly the same as specifying:
result = result / expression
Requirements
See Also
Division Operator (/) (Windows Scripting - JScript)
Operator Precedence (Windows Scripting - JScript)
Operator Summary (Windows Scripting - JScript)