cljs.math/log10

functionsince v1.11.50Edit
(log10 a)

Source docstring:
Returns the logarithm (base 10) of a.
If a is ##NaN or negative => ##NaN
If a is ##Inf => ##Inf
If a is zero => ##-Inf
See: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/log10
Source code @ clojurescript:src/main/cljs/cljs/math.cljs
(defn ^number log10
  {:added "1.11.10"}
  [a] (Math/log10 a))