How to use Math LN2 Property in JavaScript
In this article, I will explain use of Math LN2 Property in JavaScript.
JavaScript Math LN2 Property
- LN2 property returns the natural logarithm of 2 which is approximately 0.693.
Syntax
Example
The following example shows how to use Math LN2 Property in javascript.
<!DOCTYPE html>
<html>
<body>
<h2>This is the Math LN2 property example</h2>
<p id="demo">Click the button to get the natural logarithm of 2.</p>
<button onclick="myFunction()">Click on</button>
<script type="text/javascript">
function myFunction() {
document.getElementById("demo").innerHTML = Math.LN2;
}
</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