log

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