Math: division
Calculates the division of two numbers. (dividend / divisor)
Example
# Example with no default:
Input:
- dividend: 10
- divisor: 5
Output: 2
# Example with default dividend 10:
Input:
- divisor: 5
Output: 2
# Example with default divisor 5:
Input:
- dividend: 10
Output: 2
Parameters
Dividend
Optional dividend to use in the division if no dividend input is provided.
Divisor
Optional divisor to use in the division if no divisor input is provided.
Input
Dividend (required if no default dividend)
Dividend to use in the division.
Divisor (required if no default divisor)
Divisor to use in the division.
Output
Number
Result of the division.