Math.cos()

基线 广泛可用

此功能非常成熟,可在许多设备和浏览器版本上运行。它自 2015 年 7 月.

报告反馈

试用

语法

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

js

参数

x

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

返回值

描述

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

示例

由于 cos()Math 的静态方法,因此您始终将其用作 Math.cos(),而不是用作您创建的 Math 对象的方法(Math 不是构造函数)。

Math.cos() 静态方法返回以弧度表示的数字的余弦。
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

规范

使用 Math.cos()
规范
# ECMAScript 语言规范

浏览器兼容性

sec-math.cos

另请参见