Math.atanh()
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.atanh()
정적 메서드는 숫자의 역쌍곡 탄젠트를 반환합니다. 이는 다음과 같습니다.
시도해보기
구문
js
Math.atanh(x)
매개변수
x
-
-1 이상 1 이하 숫자
반환 값
설명
Math
의 정적 메서드이기 때문에 atanh()
는 생성한 Math
객체(Math
는 생성자가 아닙니다)의 메서드를 사용하기보다는 언제나 Math.atanh()
를 사용하세요.
예제
Math.atanh() 사용하기
js
Math.atanh(-2); // NaN
Math.atanh(-1); // -Infinity
Math.atanh(-0); // -0
Math.atanh(0); // 0
Math.atanh(0.5); // 0.5493061443340548
Math.atanh(1); // Infinity
Math.atanh(2); // NaN
명세서
Specification |
---|
ECMAScript Language Specification # sec-math.atanh |
브라우저 호환성
BCD tables only load in the browser