Math.atan()
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.atan()
関数は、引数として与えた数値のアークタンジェントをラジアン単位で返します。
試してみましょう
構文
Math.atan(x)
引数
x
-
数値です。
返値
与えられた数値のアークタンジェント (ラジアン単位) です。
解説
Math.atan()
メソッドは から までのラジアンの数値を返します。
atan()
は Math
の静的メソッドであるため、生成した Math
オブジェクトのメソッドとしてではなく、常に Math.atan()
として使用するようにしてください (Math
はコンストラクターではありません)。
例
Math.atan() の使用
js
Math.atan(1); // 0.7853981633974483
Math.atan(0); // 0
Math.atan(-0); // -0
Math.atan(Infinity); // 1.5707963267948966
Math.atan(-Infinity); // -1.5707963267948966
// The angle that the line [(0,0);(x,y)] forms with the x-axis in a Cartesian coordinate system
Math.atan(y / x);
様式上の理由から ±Infinity
の使用を避けたいと思うことがあるかもしれません。その場合、 Math.atan2()
を第二引数を 0
としてを使うとよりよいかもしれません。
仕様書
Specification |
---|
ECMAScript Language Specification # sec-math.atan |
ブラウザーの互換性
BCD tables only load in the browser