Is Smaller Than
Checks if a number is smaller than another one.
Description
Returns true
if a
is smaller / lower than b
. If strictly
is set to false
, then it returns true
if a
is smaller or equal to b
.
Inputs
- a (Number): First operand.
- b (Number): Second operand.
- Strictly (Boolean):
true
to make a strict comparison.
Outputs
- a < b (Boolean):
true
ifa
is smaller thanb
.