modulo
(ECMAScript 仕様書算法定義)The notation “
x modulo y
” (y must be finite and nonzero) computes a value k of the same sign as y (or zero) such thatabs(k) < abs(y)
andx - k = q * y
for some integer q.
[3] JavaScript の % と POSIX の fmod (Perl POSIX
モジュールの
fmod
) や XPath 1.0 の mod は同じです。