Movatterモバイル変換


[0]ホーム

URL:


  1. Web
  2. JavaScript
  3. Reference
  4. Standard built-in objects
  5. Math
  6. cosh()

Math.cosh()

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since ⁨July 2015⁩.

TheMath.cosh() static method returns the hyperbolic cosine of a number. That is,

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

Try it

console.log(Math.cosh(0));// Expected output: 1console.log(Math.cosh(1));// Expected output: 1.543080634815244 (approximately)console.log(Math.cosh(-1));// Expected output: 1.543080634815244 (approximately)console.log(Math.cosh(2));// Expected output: 3.7621956910836314

Syntax

js
Math.cosh(x)

Parameters

x

A number.

Return value

The hyperbolic cosine ofx.

Description

Becausecosh() is a static method ofMath, you always use it asMath.cosh(), rather than as a method of aMath object you created (Math is not a constructor).

Examples

Using Math.cosh()

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

Specifications

Specification
ECMAScript® 2026 Language Specification
# sec-math.cosh

Browser compatibility

See also

Help improve MDN

Learn how to contribute

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2025 Movatter.jp