Carrot reference
Operators
% (modulus)
An operator used to calculate the remainder of a division operation.
dividend % divisor
10 % 7 returns 3
- Given two values of type Number, the modulus operator will return the remainder of the first value divided by the second value.