JS: Math hyperbolic functions. sinh, cosh, tanh, etc.
Math.sinh(x)-
Hyperbolic sine. That is
(e^x - e^(-x))/2
sinh 2026-06-29 1b483 ll Math.cosh(x)-
hyperbolic cosine. That is
(e^x + e^(-x))/2 Math.tanh(x)-
Hyperbolic tangent. That is
Sinh[x]/Cosh[x] Math.asinh(x)-
Inverse hyperbolic sine.
Math.acosh(x)-
Inverse hyperbolic cosine.
Math.atanh(x)-
Inverse hyperbolic tangent.
The functions
Math.sinh
Math.cosh
Math.tanh
Math.asinh
Math.acosh
Math.atanh
are all
new in ECMAScript 2015.
JavaScript. math functions.
- JS: Math (namespace)
- JS: Math. max, min
- JS: Math. sign, abs
- JS: Math ceiling, floor, round, truncate
- JS: Math. random
- JS: Power and Roots
- JS: Math exponential and logarithm
- JS: Math constants. pi, e, sqrt, etc.
- JS: Math trig functions. sin, cos, tan, asin, acos, atan
- JS: Math hyperbolic functions. sinh, cosh, tanh, etc.
- JS: Math fround, clz32, imul