Is Greater Than
Checks if a number is greater than another one
Description
Returns true
if a
is bigger than b
. If strictly
is set to false
, then it returns true
if a
is bigger 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 greater thanb