asin

種類メソッド
書式 Math.asin(値)
解説
値のアークサインを求めます。
サンプルコード
n = eval(prompt("Input Number",0));
alert("アークサインは"+Math.asin(n)+"です");
実際のスクリプトをダウンロード