Middleware

Round Down

Round Down Middleware Node

Rounds a number down to the nearest whole number.

For example - 1.5 would become 1.

Inputs

Parameter
Type
Description

Number

number

The number to round down.

Outputs

Name
Type
Description

Value

number

The rounded down number.

Add Number

Add Number Middleware Node

Adds two numbers, A and B, together.

For example - 3 and 5 -> 8.

Inputs

Parameter
Type
Description

A

number

The first number to add together.

B

number

The second number to add together.

Outputs

Name
Type
Description

Value

number

The sum of A and B.

Equals

Equals Middleware Node

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"

Inputs

Parameter
Type
Description

A

any

The first value to compare.

B

any

The second value to compare.

Outputs

Name
Type
Description

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.

Last updated

Was this helpful?