Conditional
Allows to perform condition processes between two values

Value A, B : Parameters to be evaluated within our conditional must be entered
Logic comparation : The operator we want to use to compare our parameters must be selected.
=== : this operator checks that both parameters are equal and of the same type
== : this operator compares that both parameters are equal regardless of their type
< : this operator checks that our parameter (a) is less than our parameter (b).
<= : this operator checks that our parameter (a) is less than or equal to our parameter (b).
> : this operator checks whether our parameter (a) is greater than our parameter (b).
>= : this operator checks that our parameter (a) is greater than or equal to our parameter (b).
Step by Step :

Is false : It is executed when the result of our conditional is ( false )
OutVars
Null
Is true : It is executed when the result of our conditional is ( true )
Null
Last updated
Was this helpful?