We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Find the remainder of x/y with sign of y (floored division).
Similar: rem, mod, modp.
function mod(x, y) // x: dividend // y: divisor
const xmath = require('extra-math'); xmath.mod(1, 10); // → 1 xmath.mod(-1, 10); // → 9 xmath.mod(1, -10); // → -9
There was an error while loading. Please reload this page.