Math.cos()Math.cos() 静态方法返回以弧度表示的数字的余弦值。 ¥The Math.cos() static method returns the cosine of a number in radians.Try it 语法¥Syntax jsMath.cos(x) 参数¥Parameters x 表示角度(以弧度表示)的数字。 返回值¥Return value x 的余弦,介于 -1 和 1 之间(包含 -1 和 1)。如果 x 是 Infinity、-Infinity 或 NaN,则返回 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() jsMath.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 规范SpecificationECMAScript Language Specification # sec-math.cos¥Specifications 浏览器兼容性BCD tables only load in the browser with JavaScript enabled. Enable JavaScript to view data.¥Browser compatibility 也可以看看¥See also Math.acos() Math.asin() Math.atan() Math.atan2() Math.sin() Math.tan()