Calculate the base-10 logarithm of each element in an array.
> log10([1, 10, 100, 1000])[0, 1, 2, 3] Copy
> log10([1, 10, 100, 1000])[0, 1, 2, 3]
The array of numbers.
An array with the base-10 logarithm of each input element.
Calculate the base-10 logarithm of each element in an array.
Example