tan

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