log10 static method

num log10(
  1. num x
)

Implementation

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