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) → 0Inputs
Mod(dividend, divisor)
dividend- A number expressiondivisor- A number expression
Returns the modulo value, which is the remainder of dividing the first argument by the second argument
Mod(20, 6) → 2
Mod(100, 10) → 0Mod(dividend, divisor)
dividend - A number expression
divisor - A number expression