Divide
- 27 May 2022
- 1 Minute to read
- DarkLight
- PDF
Divide
- Updated on 27 May 2022
- 1 Minute to read
- DarkLight
- PDF
Article Summary
Divides the first number with the second one, returning an integer or a decimal number accordingly. Equivalent to the the /
operator.
Function signature
DIVIDE(dividend: Number, divisor: Number) => Number
Parameter | Description |
---|---|
Dividend | Dividend |
Divisor | Divisor |
Examples
Formula | Return value |
---|---|
DIVIDE(4, 2) | 2 |
DIVIDE(4, 0.03) | 133.33333333 |
DIVIDE(-4, 3) | -1.33333333 |
DIVIDE(0, 5) | 0 |
Was this article helpful?