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