math.log10() function

The math.log10() function returns the decimal logarithm of x.

*Output data type: Float*

  1. import "math"
  2. math.log10(x: 3.14)
  3. // Returns 0.4969296480732149

Parameters

x

The value used in the operation.

*Data type: Float*

Special cases

  1. math.log10(x: +Inf) // Returns +Inf
  2. math.log10(x: 0) // Returns -Inf
  3. math.log10(x: <0) // Returns NaN
  4. math.log10(x: NaN) // Returns NaN