isPositive
isPositive(x)
Test whether a value is positive: larger than zero.
Try it yourself:
$1 | isPositive(2)
| |
$2 | isPositive(0)
| |
$3 | isPositive(-4)
| |
$4 | isPositive([3, 0.5, -2])
|
Test whether a value is positive: larger than zero.
Try it yourself:
$1 | isPositive(2)
| |
$2 | isPositive(0)
| |
$3 | isPositive(-4)
| |
$4 | isPositive([3, 0.5, -2])
|