JScript  

Modulus Operator (%)

[This is preliminary documentation and subject to change]

Divides the value of one expression by the value of another, and returns the remainder.

result = number1 % number2

Arguments

result

Any variable..

number1

Any numeric expression.

number2

Any numeric expression.

Remarks

The modulus, or remainder, operator divides number1 by number2 (rounding floating-point numbers to integers) and returns only the remainder as result. For example, in the following expression, A (which is result) equals 5.

A = 19 % 6.7

Requirements

Version 1

See Also

%= Operator | Operator Precedence | Operator Summary