Skip to main content

Higher Than

Module Info:

moduleType: "internal",
moduleName: "higherThan"

Description

The higherThan function compares two values and returns true the first value (A) is higher than the second value (B).

Inputs

NameTypeRequired
Anumber
Bnumber

Outputs

NameType
isHigherboolean

Examples

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