# Within Bounds

Grammar — min <= value <= max
Flags — Operator

Returns true if the Value parameter is in between the Min and Max parameters, or if the Value parameter is equal to either the Min or the Max parameter.

# Arguments

  • anynumber — Value
  • anynumber — Min
  • anynumber — Max

Returns — bool

((#PARAM(value) >= #PARAM(min)) && (#PARAM(value) <= #PARAM(max)))

Category: Logic / Comparisons

# Examples

— None found —