Math.acosh()
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.acosh()
関数は、数値の双曲線余弦 (ハイパーボリックアークコサイン) を返します。
試してみましょう
構文
Math.acosh(x)
引数
x
-
数値。
返値
与えられた数値の双曲線余弦 (ハイパーボリックアークコサイン) です。数値が 1 未満であれば、 NaN
になります。
解説
acosh()
は Math
の静的メソッドであるため、作成した Math
オブジェクトのメソッドとしてではなく、常に Math.acosh()
として使用するようにしてください (Math
はコンストラクターではありません)。
例
Math.acosh() の使用
js
Math.acosh(-1); // NaN
Math.acosh(0); // NaN
Math.acosh(0.5); // NaN
Math.acosh(1); // 0
Math.acosh(2); // 1.3169578969248166
1 未満の値に対しては、 Math.acosh()
は NaN
を返します。
ポリフィル
に対して、 になり、次の関数でエミュレートできます。
js
Math.acosh =
Math.acosh ||
function (x) {
return Math.log(x + Math.sqrt(x * x - 1));
};
仕様書
Specification |
---|
ECMAScript Language Specification # sec-math.acosh |
ブラウザーの互換性
BCD tables only load in the browser