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 expressiondivisor
- A number expression
Last updated
Was this helpful?