Remarque
L’accès à cette page nécessite une autorisation. Vous pouvez essayer de vous connecter ou de modifier des répertoires.
L’accès à cette page nécessite une autorisation. Vous pouvez essayer de modifier des répertoires.
Divides the value of a variable by the value of an expression, and assigns the remainder to the variable.
Syntax
result %= expression
Arguments
result
Any variable.expression
Any numeric expression.
Remarks
Using the %= operator is exactly the same as specifying:
result = result % expression
Requirements
See Also
Modulus Operator (%) (Windows Scripting - JScript)
Operator Precedence (Windows Scripting - JScript)
Operator Summary (Windows Scripting - JScript)