Math.LOG2E
En esta página
The Math.LOG2E static data property represents the base 2 logarithm of e, approximately 1.443.
{{InteractiveExample("JavaScript Demo: Math.LOG2E", "shorter")}}
```js interactive-example function getLog2e() { return Math.LOG2E; }
console.log(getLog2e()); // Expected output: 1.4426950408889634
## Value
<!-- prettier-ignore-start -->
<math display="block">
<semantics><mrow><mi>𝙼𝚊𝚝𝚑.𝙻𝙾𝙶𝟸𝙴</mi><mo>=</mo><msub><mo lspace="0em" rspace="0em">log</mo><mn>2</mn></msub><mo stretchy="false">(</mo><mi mathvariant="normal">e</mi><mo stretchy="false">)</mo><mo>≈</mo><mn>1.443</mn></mrow><annotation encoding="TeX">\mathtt{Math.LOG2E} = \log_2(\mathrm{e}) \approx 1.443</annotation></semantics>
</math>
<!-- prettier-ignore-end -->
{{js_property_attributes(0, 0, 0)}}
## Description
Because `LOG2E` is a static property of `Math`, you always use it as `Math.LOG2E`, rather than as a property of a `Math` object you created (`Math` is not a constructor).
## Examples
### Using Math.LOG2E
The following function returns the base 2 logarithm of e:
```js
function getLog2e() {
return Math.LOG2E;
}
getLog2e(); // 1.4426950408889634
Specifications#
{{Specifications}}
Browser compatibility#
{{Compat}}
See also#
- {{jsxref("Math.exp()")}}
- {{jsxref("Math.log()")}}
- {{jsxref("Math.log2()")}}