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.

Math.cosh() 정적 메서드는 숫자의 쌍곡 코사인을 반환합니다. 이는 아래와 같습니다.

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

시도해보기

구문

js
Math.cosh(x)

매개 변수

x

숫자.

반환 값

x의 쌍곡 코사인.

설명

Math의 정적 메서드이기 때문에 cosh()는 생성한 Math 객체(Math는 생성자가 아닙니다)의 메서드를 사용하기보다는 언제나 Math.cosh()를 사용하세요.

예제

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

명세서

Specification
ECMAScript Language Specification
# sec-math.cosh

브라우저 호환성

BCD tables only load in the browser

같이 보기