atan

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