Movatterモバイル変換


[0]ホーム

URL:


  1. 개발자를 위한 웹 기술
  2. JavaScript
  3. JavaScript 참고서
  4. 표준 내장 객체
  5. Math
  6. Math.asinh()

This page was translated from English by the community.Learn more and join the MDN Web Docs community.

View in EnglishAlways switch to English

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 ⁨2015년 7월⁩.

정적 메서드Math.asinh() 는 숫자의 역 쌍곡선 사인을 반환합니다.

𝙼𝚊𝚝𝚑.𝚊𝚜𝚒𝚗𝚑(𝚡)=arsinh(x)=the unique y such that sinh(y)=x=ln(x+x2+1)\begin{aligned}\mathtt{\operatorname{Math.asinh}(x)} &= \operatorname{arsinh}(x) = \text{the unique } y \text{ such that } \sinh(y) = x \&= \ln\left(x + \sqrt{x^2 + 1}\right)\end{aligned}

시도해 보기

console.log(Math.asinh(1));// Expected output: 0.881373587019543console.log(Math.asinh(0));// Expected output: 0console.log(Math.asinh(-1));// Expected output: -0.881373587019543console.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); // -InfinityMath.asinh(-1); // -0.881373587019543Math.asinh(-0); // -0Math.asinh(0); // 0Math.asinh(1); // 0.881373587019543Math.asinh(Infinity); // Infinity

명세서

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

브라우저 호환성

같이 보기

Help improve MDN

Learn how to contribute

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2025 Movatter.jp