Math.LOG10E property
The Math.LOG10E property
returns the value of the base
10 logarithm of e
(exponential constant).
Syntax
Math.LOG10E;
Example
Let's output the value of the
base 10 logarithm of e:
console.log(Math.LOG10E);
The code execution result:
0.4342944819032518
See also
-
the
Math.LN2property
that returns the value of the natural logarithm of two -
the
Math.LN10property
that returns the value of the natural logarithm of ten -
the
Math.LOG2Eproperty
that returns the base 2 logarithm of e -
the
Math.logmethod
that returns the natural logarithm of a number