log10
log10(x)
Compute the 10-base logarithm of a value.
Try it yourself:
$1 | log10(0.00001)
| |
$2 | log10(10000)
| |
$3 | 10 ^ 4
| |
$4 | log(10000) / log(10)
| |
$5 | log(10000, 10)
|