Middleware
Last updated
Was this helpful?
Last updated
Was this helpful?
Rounds a number down to the nearest whole number.
For example - 1.5 would become 1.
Number
number
The number to round down.
Value
number
The rounded down number.
Adds two numbers, A and B, together.
For example - 3 and 5 -> 8.
A
number
The first number to add together.
B
number
The second number to add together.
Value
number
The sum of A and B.
Checks if A and B are equal. Sends A to the applicable output.
For example - if A and B are equal, A is passed to "AIfEqual". If they are not equal, A is passed to "BIfNotEqual"
A
any
The first value to compare.
B
any
The second value to compare.
AIfEqual
any
The value of A if A and B are equal.
AIfNotEqual
any
The value of A if A and B are not equal.