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()
정적 메서드는 숫자의 쌍곡 코사인을 반환합니다. 이는 아래와 같습니다.
시도해보기
구문
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