Math.asin()
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.
概述
Math.asin()
方法返回一个数值的反正弦(单位为弧度),即:
语法
Math.asin(x)
参数
x
-
一个数值
描述
asin
方法接受 -1 到 1 之间的数值作为参数,返回一个介于 到 弧度的数值。如果接受的参数值超出范围,则返回 NaN
。
由于 asin
是 Math
的静态方法,所有应该像这样使用:Math.asin()
,而不是作为你创建的 Math
实例的方法。
示例
示例:使用 Math.asin()
js
Math.asin(-2); // NaN
Math.asin(-1); // -1.5707963267948966 (-pi/2)
Math.asin(0); // 0
Math.asin(0.5); // 0.5235987755982989
Math.asin(1); // 1.5707963267948966 (pi/2)
Math.asin(2); // NaN
对于小于 -1 或大于 1 的参数值,Math.asin
返回 NaN
。
规范
Specification |
---|
ECMAScript Language Specification # sec-math.asin |
浏览器兼容性
BCD tables only load in the browser