log10 function

num log10(
  1. num y
)

10-based logarithm.

Implementation

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