606 B
606 B
title | description | menu | weight | ||||||
---|---|---|---|---|---|---|---|---|---|
math.log10() function | The math.log10() function returns the decimal logarithm of `x`. |
|
301 |
The math.log10()
function returns the decimal logarithm of x
.
Output data type: Float
import "math"
math.log10(x: 3.14)
// Returns 0.4969296480732149
Parameters
x
The value used in the operation.
Data type: Float
Special cases
math.log10(x: +Inf) // Returns +Inf
math.log10(x: 0) // Returns -Inf
math.log10(x: <0) // Returns NaN
math.log10(x: NaN) // Returns NaN