acos

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