sin

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