Divides one number (dividend) by another (divisor) and returns a numeric result.
Property | Type | Description |
---|---|---|
Dividend | Number | The number to be divided by another number (divisor). |
Divisor | Number | The number to divide another number (dividend). |
RoundingDecimalPositions | Number | Rounds the result "down" if roundingDecimalPositions is not null and >= 0. An example would be rounding 23.5 to 23. |
- If dividend is null, then returns null.
- If divisor is null, then returns dividend.
Comments
0 comments
Please sign in to leave a comment.