Returns the value of n mod m. Note that the JavaScript % operator does remainder, not modulo. If mod is 0, this will always return NaN.
n
m
%
mod
0
NaN
The dividend.
The divisor.
Returns the value of
nmodm. Note that the JavaScript%operator does remainder, not modulo. Ifmodis0, this will always returnNaN.