Skip to main content

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

NameTypeRequired
Anumber
Bnumber

Outputs

NameType
isLowerboolean

Examples

Inputs Outputs
A B isHigher
42 16 false
16 42 true
16 16 false
-16 -42 false