Javascript - Math LN10 Property

The LN10 property returns the natural logarithm of 10, approximately 2.302.

Description

The LN10 property returns the natural logarithm of 10, approximately 2.302.

Syntax

Math.LN10

Return

A Number, representing the natural logarithm of 10

Example

Return the natural logarithm of 10:

Demo

//display the natural logarithm of 10.
console.log(Math.LN10);

Result