English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية

JavaScript Math.LOG10E Property

 JavaScript Math Object

Math.LOG10E PropertyRepresents the base of10The logarithm of base E, approximately equal to 0.434.

Due to LOG10E is a static property of Math, so you should always use it asMath.LOG10Eas opposed to using it as a property of the created Math object.

Syntax:

Math.LOG10E
Math.LOG10E;
Test and See‹/›

Browser Compatibility

All browsers fully support Math.LOG10E Property:

Property
Math.LOG10EYesYesYesYesYes

Technical Details

Writable:None
Enumerable:None
Configurable:None
Return Value:A number representing the base of10The logarithm of base E
JavaScript Version:ECMAScript 1

 JavaScript Math Object