Skip to main content

Advanced Math

Modulo (Remainder)

Returns the remainder after dividing one number by another.

Example: 64 modulo 10 returns 4.

Constrain

Forces a number to be within a specific range.

  • If the number is lower than low, it returns low.
  • If the number is higher than high, it returns high.
  • Otherwise, it returns the number itself.