Math.cosh()Math.cosh() 静态方法返回数字的双曲余弦。那是, ¥The Math.cosh() static method returns the hyperbolic cosine of a number. That is, 𝙼𝚊𝚝𝚑.𝚌𝚘𝚜𝚑 ( 𝚡 ) = cosh ( x ) = e x + e − x 2 \mathtt{\operatorname{Math.cosh}(x)} = \cosh(x) = \frac{\mathrm{e}^x + \mathrm{e}^{-x}}{2} Try it 语法¥Syntax jsMath.cosh(x) 参数¥Parameters x 一个号码。 返回值¥Return value x 的双曲余弦。 ¥The hyperbolic cosine of x. 描述¥Description 因为 cosh() 是 Math 的静态方法,所以你始终将其用作 Math.cosh(),而不是用作你创建的 Math 对象的方法(Math 不是构造函数)。 ¥Because cosh() is a static method of Math, you always use it as Math.cosh(), rather than as a method of a Math object you created (Math is not a constructor). 示例¥Examples 使用 Math.cosh()¥Using Math.cosh() jsMath.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 规范SpecificationECMAScript Language Specification # sec-math.cosh¥Specifications 浏览器兼容性BCD tables only load in the browser with JavaScript enabled. Enable JavaScript to view data.¥Browser compatibility 也可以看看¥See also core-js 中 Math.cosh 的 Polyfill Math.acosh() Math.asinh() Math.atanh() Math.sinh() Math.tanh()