Math.sin()

Math.sin() 静态方法返回以弧度表示的数字的正弦值。

¥The Math.sin() static method returns the sine of a number in radians.

Try it

语法

¥Syntax

js
Math.sin(x)

参数

¥Parameters

x

表示角度(以弧度表示)的数字。

返回值

¥Return value

x 的正弦值,介于 -1 和 1 之间(包含 -1 和 1)。如果 xInfinity-InfinityNaN,则返回 NaN

¥The sine of x, between -1 and 1, inclusive. If x is Infinity, -Infinity, or NaN, returns NaN.

描述

¥Description

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

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

示例

¥Examples

使用 Math.sin()

¥Using Math.sin()

js
Math.sin(-Infinity); // NaN
Math.sin(-0); // -0
Math.sin(0); // 0
Math.sin(1); // 0.8414709848078965
Math.sin(Math.PI / 2); // 1
Math.sin(Infinity); // NaN

规范

Specification
ECMAScript Language Specification
# sec-math.sin

¥Specifications

浏览器兼容性

BCD tables only load in the browser

¥Browser compatibility

也可以看看