Math.LOG2E
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.
Math.LOG2E
속성은 e의 로그 2 값, 약 1.442의 값을 가집니다.
시도해보기
function getLog2e() {
return Math.LOG2E;
}
console.log(getLog2e());
// Expected output: 1.4426950408889634
Property attributes of Math.LOG2E | |
---|---|
쓰기 가능 | 불가능 |
열거 가능 | 불가능 |
설정 가능 | 불가능 |
설명
LOG2E
는 Math
의 정적 속성이므로, 사용자가 생성한 Math
객체의 속성으로 접근할 수 없고 항상 Math.LOG2E
를 사용해야 합니다. (Math
는 생성자가 아닙니다)
예제
Math.LOG2E
사용하기
다음 함수는 e의 로그 2 값을 반환합니다.
js
function getLog2e() {
return Math.LOG2E;
}
getLog2e(); // 1.4426950408889634
명세
Specification |
---|
ECMAScript® 2025 Language Specification # sec-math.log2e |
브라우저 호환성
Report problems with this compatibility data on GitHubdesktop | mobile | server | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
LOG2E |
Legend
Tip: you can click/tap on a cell for more information.
- Full support
- Full support
The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.