Mod

Returns the modulo value, which is the remainder of dividing the first argument by the second argument

Mod(20, 6) → 2
Mod(100, 10) → 0

Inputs

Mod(dividend, divisor)

  • dividend - A number expression

  • divisor - A number expression

Last updated