이 글은 편집 검토가 필요합니다. 도울을 줄 수 있는 방법을 살펴보세요.
Math.LOG10E속성은
log10e를 나타내는 것이고, 이 값은 대략 0.434입니다:
Property attributes of Math.LOG10E |
|
---|---|
Writable | no |
Enumerable | no |
Configurable | no |
설명
LOG10E 수학의 정적인 특성이기 때문에, 사용자는 자신이 만든 수학적인 객체를 사용하느니 Math.LOG10E를 사용하는게 좋습니다.
예제
Math.LOG10E 사용하기
다음 함수는 log 10 e의 값을 리턴합니다:
function getLog10e() { return Math.LOG10E; } getLog10e(); // 0.4342944819032518
Specifications
Specification | Status | Comment |
---|---|---|
ECMAScript 1st Edition (ECMA-262) | Standard | Initial definition. Implemented in JavaScript 1.0. |
ECMAScript 5.1 (ECMA-262) The definition of 'Math.LOG10E' in that specification. |
Standard | |
ECMAScript 2015 (6th Edition, ECMA-262) The definition of 'Math.LOG10E' in that specification. |
Standard | |
ECMAScript 2017 Draft (ECMA-262) The definition of 'Math.LOG10E' in that specification. |
Draft |
Browser compatibility
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
Basic support | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) |
Feature | Android | Chrome for Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|
Basic support | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) |