log10 function

num log10(
  1. num x
)

Computes the common logarithm (base 10) of the value x.

Implementation

num log10(num x) => math.log(x) / math.ln10;