log10(x: f64) → f64
Category: [math](builtinsmath)_
Base-10 logarithm.
| Parameter | Type | Description | Remarks |
|---|---|---|---|
| x | f64 | The input value. | — |
| returns | f64 | The result. | — |
wcl
log10(1000.0) // base-10 logarithm of 1000 → 3.0log10(x: f64) → f64
Category: [math](builtinsmath)_
Base-10 logarithm.
| Parameter | Type | Description | Remarks |
|---|---|---|---|
| x | f64 | The input value. | — |
| returns | f64 | The result. | — |
log10(1000.0) // base-10 logarithm of 1000 → 3.0