inverseLog10 function

num inverseLog10(
  1. num y
)

Reverse of 10-based logarithm.

Implementation

num inverseLog10(num y) => math.pow(10, y);