Javascript - Math LOG10E Property

The LOG10E property returns the base-10 logarithm of E, approximately 0.434.

Description

The LOG10E property returns the base-10 logarithm of E, approximately 0.434.

Syntax

Math.LOG10E

Return

A Number, representing the base-10 logarithm of E

Example

Return the base-10 logarithm of E:

Demo

//display the base-10 logarithm of E.
console.log(Math.LOG10E);

Result