This JavaScript tutorial explains how to use the math property referred to as Math.LN2 with syntax and examples.
Description
In JavaScript, Math.LN2 is a math property that is used to return the mathematical regular loge2 which is the herbal logarithm of 2 Because Math.LN2 is a property of the Math object, it must be invoked thru the placeholder object referred to as Math.
Syntax
In JavaScript, the syntax for the Math.LN2 property is:
Math.LN2;
Parameters or Arguments
There are no parameters or arguments for the Math.LN2 property.
Returns
The Math.LN2 property returns the mathematical regular loge2 which has an approximate price of 0.6931471805599453.
Note
The Math.LN2 property is a property of the Math object and now not a math function. However, we have protected the Math.LN2 property inside our JS Math Functions area due to the fact you will most likely use this property in conjunction with the Math features observed in this section.
Example
Let’s take a seem at an instance of how to use the Math.LN2 property in JavaScript.
For example:
console.log(Math.LN2);
In this example, we have invoked the Math.LN2 property using the Math class.
We have written the output of the Math.LN2 property to the internet browser console log, for demonstration purposes, to show what the Math.LN2 property returns.
The following will be output to the internet browser console log:
0.6931471805599453
In this example, the Math.LN2 property back a fee of 0.6931471805599453 which is the cost of the mathematical constant loge2. This is the value of the natural logarithm of two
Leave a Review