Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

Math.LOG10E

이 글은 편집 검토가 필요합니다. 도울을 줄 수 있는 방법을 살펴보세요.

Math.LOG10E속성은 log10e를 나타내는 것이고, 이 값은 대략 0.434입니다:

Math.LOG10E=log10(e)0.434\mathtt{\mi{Math.LOG10E}} = \log_10(e) \approx 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)

참조

문서 태그 및 공헌자

 이 페이지의 공헌자: SeungYeol, seung-yeol
 최종 변경: SeungYeol,