ROUNDDOWN
Rounds a number down, toward zero, to a specified number of digits.
| Category | Math |
| Syntax | ROUNDDOWN(number, num_digits) |
Parameters
| Parameter | Required | Description |
|---|---|---|
number | Required | Any real number you want to round down. |
num_digits | Required | The number of digits to which you want to round. |
Example
ROUNDDOWN(3.19, 1) // → 3.1
Auto-generated from the EngCanvas function registry.