Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

Math.asin()

概要

引数として与えた数のアークサインをラジアン単位で返します。

構文

Math.asin(x)

引数

x
数値

説明

asin メソッドは、-1 から 1 までの x に対して、-PI/2 から PI/2 までのラジアンの数値を返します。number の値が、この範囲を越えている場合、このメソッドは、NaN を返します。

asinMath オブジェクトの静的なメソッドなので、自ら生成した Math オブジェクトのメソッドとしてではなく、常に、Math.asin() として使用するようにしてください。

例: Math.asin の使用

以下の関数は、変数 x のアークサインを返します。

function getAsin(x) {
   return Math.asin(x)
}

getAsin に 1 を渡した場合、1.570796326794897 (PI/2) を返します。しかし、2 を渡した場合は、NaN を返します。なぜなら 2 は、範囲外の値だからです。

関連情報

ドキュメントのタグと貢献者

 このページの貢献者: teoli, ethertank, Potappo
 最終更新者: teoli,