Math.asinh()
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.asinh()
는 숫자의 역 쌍곡선 사인을 반환합니다.
시도해보기
console.log(Math.asinh(1));
// Expected output: 0.881373587019543
console.log(Math.asinh(0));
// Expected output: 0
console.log(Math.asinh(-1));
// Expected output: -0.881373587019543
console.log(Math.asinh(2));
// Expected output: 1.4436354751788103
구문
js
Math.asinh(x)
매개변수
x
-
숫자.
반환 값
x
의 역 쌍곡선 사인.
설명
asinh()
는 Math
의 정적 메서드이므로 생성한 Math
객체의 메서드가 아니라 항상 Math.asinh()
로 사용합니다(Math는 생성자가 아닙니다).
예제
Math.asinh() 사용하기
js
Math.asinh(-Infinity); // -Infinity
Math.asinh(-1); // -0.881373587019543
Math.asinh(-0); // -0
Math.asinh(0); // 0
Math.asinh(1); // 0.881373587019543
Math.asinh(Infinity); // Infinity
명세서
Specification |
---|
ECMAScript® 2025 Language Specification # sec-math.asinh |
브라우저 호환성
Report problems with this compatibility data on GitHubdesktop | mobile | server | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
asinh |
Legend
Tip: you can click/tap on a cell for more information.
- Full support
- Full support
The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.