Math.log( number )メソッド

Math.log( number )メソッドは、引数「number」に指定した数値の、eを底とする自然対数を返す静的メソッド。

構文

Math.log( number )

引数

number
数値を指定する。

戻り値

自然対数。

サンプル

<script>
document.write( '<p>Math.log( 3 ): ' + Math.log( 3 ) + '</p>' );
document.write( '<p>Math.log( 20 ): ' + Math.log( 20 ) + '</p>' );
</script>

↓↓↓出力結果↓↓↓

スポンサード リンク

カテゴリー: JavaScript, Mathオブジェクト, メソッド, リファレンス, 組み込みオブジェクト タグ: パーマリンク