Math.cos()

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

¥The Math.cos() static method returns the cosine of a number in radians.

Try it

语法

¥Syntax

js
Math.cos(x)

参数

¥Parameters

x

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

返回值

¥Return value

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

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

描述

¥Description

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

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

示例

¥Examples

使用 Math.cos()

¥Using Math.cos()

js
Math.cos(-Infinity); // NaN
Math.cos(-0); // 1
Math.cos(0); // 1
Math.cos(1); // 0.5403023058681398
Math.cos(Math.PI); // -1
Math.cos(2 * Math.PI); // 1
Math.cos(Infinity); // NaN

规范

Specification
ECMAScript Language Specification
# sec-math.cos

¥Specifications

浏览器兼容性

BCD tables only load in the browser

¥Browser compatibility

也可以看看