Skip to main content
Version: Next

In Range Number

Checks if a number is between start and up to, but not including, end

Description

Checks if a number is between start and up to, but not including, end. If start is greater than end the params are swapped to support negative ranges.

Example:

  • inputs

    • number = 3
    • start = 2
    • end = 4
  • outputs

    • result = true

Inputs

  • Number (Number): The number to check
  • Start (Number): The start of the range
  • End (Number): The end of the range

Outputs

  • Result (Boolean): True if number is in the range, else false