cljs.math/asin

functionsince v1.11.50Edit
(asin a)

Source docstring:
Returns the arc sine of an angle, in the range -pi/2 to pi/2.
If a is ##NaN or |a|>1 => ##NaN
If a is zero => zero with the same sign as a
See: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/asin
Source code @ clojurescript:src/main/cljs/cljs/math.cljs
(defn ^number asin
  {:added "1.11.10"}
  [a] (Math/asin a))