How to use Math LOG2E Property in JavaScript
In this article, I will explain use of Math LOG2E Property in JavaScript.
JavaScript Math LOG2E Property
- LOG2E property returns the base-2 logarithm of E which is approximately 1.442.
Syntax
Example
The following example shows how to use Math LOG2E Property in javascript.
<!DOCTYPE html>
<html>
<body>
<h2>This is the Math LOG2E property example</h2>
<p id="demo">Click the button to display the base-2 logarithm of E.</p>
<button onclick="myFunction()">Click ON</button>
<script type="text/javascript">
function myFunction() {
document.getElementById("demo").innerHTML = Math.LOG2E;
}
</script>
</body>
</html>
|
Output 1

Output 2

Further Readings
You may also want to read these related articles here
Ask Your Question
Got a programming related question? You may want to post your question here
Programming Answers here