cljs.math/pow

functionsince v1.11.50Edit
(pow a b)

Source docstring:
Returns the value of a raised to the power of b.
For more details on special cases, see:
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/pow
Source code @ clojurescript:src/main/cljs/cljs/math.cljs
(defn ^number pow
  {:added "1.11.10"}
  [a b] (Math/pow a b))