Math.asin()

Math.asin() 静态方法返回数字的反正弦值(以弧度为单位)。那是,

¥The Math.asin() static method returns the inverse sine (in radians) of a number. That is,

x [ 1 , 1 ] , 𝙼𝚊𝚝𝚑.𝚊𝚜𝚒𝚗 ( 𝚡 ) = arcsin ( x ) = the unique  y [ π 2 , π 2 ]  such that  sin ( y ) = x \forall x \in [{-1}, 1],;\mathtt{\operatorname{Math.asin}(x)} = \arcsin(x) = \text{the unique } y \in \left[-\frac{\pi}{2}, \frac{\pi}{2}\right] \text{ such that } \sin(y) = x

Try it

语法

¥Syntax

js
Math.asin(x)

参数

¥Parameters

x

-1 到 1 之间的数字(包含 -1 和 1),表示角度的正弦值。

返回值

¥Return value

反正弦( - π 2 </ 之间的弧度角 mrow><注释编码="TeX">-\frac{\pi}{2}</注释></语义></数学> 和 <数学><语义> π 2< /mfrac><注释编码="TeX">\frac{\pi}{2}</注释></语义></数学>,包含) x。如果 x 小于 -1 或大于 1,则返回 NaN

¥The inverse sine (angle in radians between - π 2 -\frac{\pi}{2} and π 2 \frac{\pi}{2} , inclusive) of x. If x is less than -1 or greater than 1, returns NaN.

描述

¥Description

因为 asin()Math 的静态方法,所以你始终将其用作 Math.asin(),而不是用作你创建的 Math 对象的方法(Math 不是构造函数)。

¥Because asin() is a static method of Math, you always use it as Math.asin(), rather than as a method of a Math object you created (Math is not a constructor).

示例

¥Examples

使用 Math.asin()

¥Using Math.asin()

js
Math.asin(-2); // NaN
Math.asin(-1); // -1.5707963267948966 (-π/2)
Math.asin(-0); // -0
Math.asin(0); // 0
Math.asin(0.5); // 0.5235987755982989 (π/6)
Math.asin(1); // 1.5707963267948966 (π/2)
Math.asin(2); // NaN

规范

Specification
ECMAScript Language Specification
# sec-math.asin

¥Specifications

浏览器兼容性

BCD tables only load in the browser

¥Browser compatibility

也可以看看