a
(float, default: 0): The first number to compare.b
(float, default: 0): The second number to compare.result
(boolean): True if a
is greater than or equal to b
, false otherwise.a
input.b
input.result
output will emit a boolean value indicating whether a
is greater than or equal to b
.a
input of the ≥ node.b
input of the ≥ node.result
output of the ≥ node to a branch node.result
is true, the user is 18 or older, so route them to the age-restricted content.result
is false, the user is under 18, so route them to an appropriate message or alternative content.a
and b
inputs are valid floating-point numbers. If either input is not a number, the node will output false.a
and b
are equal, the result
will be true.result
is always false even when you expect it to be true, double-check that you’ve connected the inputs in the correct order (a
should be the value you expect to be greater than or equal to b
).