Math.cosh()

基线 广泛可用

此功能已得到良好建立,并且可在许多设备和浏览器版本中使用。它自以下时间起在所有浏览器中都可用 2015 年 7 月.

Math.cosh() 静态方法返回数字的双曲余弦。也就是说,

𝙼𝚊𝚝𝚑.𝚌𝚘𝚜𝚑 ( 𝚡 ) = cosh ( x ) = e x + e x 2 \mathtt{\operatorname{Math.cosh}(x)} = \cosh(x) = \frac{\mathrm{e}^x + \mathrm{e}^{-x}}{2}

试一试

语法

js
Math.cosh(x)

参数

x

一个数字。

返回值

x 的双曲余弦。

描述

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

示例

使用 Math.cosh()

js
Math.cosh(-Infinity); // Infinity
Math.cosh(-1); // 1.5430806348152437
Math.cosh(-0); // 1
Math.cosh(0); // 1
Math.cosh(1); // 1.5430806348152437
Math.cosh(Infinity); // Infinity

规范

规范
ECMAScript 语言规范
# sec-math.cosh

浏览器兼容性

BCD 表仅在启用 JavaScript 的浏览器中加载。

另请参阅