Conditional
Allows to perform condition processes between two values
Last updated
Allows to perform condition processes between two values
Last updated
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 :