cljs.math/exp

functionsince v1.11.50Edit
(exp a)

Source docstring:
Returns Euler's number e raised to the power of a.
If a is ##NaN => ##NaN
If a is ##Inf => ##Inf
If a is ##-Inf => +0.0
See: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/exp
Source code @ clojurescript:src/main/cljs/cljs/math.cljs
(defn ^number exp
  {:added "1.11.10"}
  [a] (Math/exp a))