Lower Than
Module Info:
moduleType: "internal",
moduleName: "lowerThan"
Description
The lowerThan function compares two values and returns true the first value (A) is lower than the second value (B).
Inputs
| Name | Type | Required |
|---|---|---|
A | number | ✔ |
B | number | ✔ |
Outputs
| Name | Type |
|---|---|
isLower | boolean |
Examples
| Inputs | Outputs | |
|---|---|---|
| A | B | isHigher |
42 | 16 | false |
16 | 42 | true |
16 | 16 | false |
-16 | -42 | false |