cljs.math/cbrt

functionsince v1.11.50Edit
(cbrt a)

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