log10 static method

double log10(
  1. num x
)

Implementation

static double log10(num x) {
  return log(x) / ln10;
}