A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://www.geeksforgeeks.org/javascript/javascript-math-ln2-property/ below:

JavaScript Math LN2 Property - GeeksforGeeks

JavaScript Math LN2 Property

Last Updated : 12 Jul, 2024

The Math.LN2 is a property in JavaScript that is simply used to find the value of a natural log of 2. The natural log is of base e which is represented as ln. So, the natural log of 2 is represented as ln(2) whose value is approximately 0.693.

Syntax:

Math.LN2;

Parameters: This method does not accept any parameter.

Return Values: It simply returns the Value of the natural log of 2.

Below is an example of the Math LN2() Method. 

Example 1: 

javascript
// Here value of Math.LN2 is printed.
console.log(Math.LN2);

Output:  

0.6931471805599453

Example 2: The value of the natural log of 2 can be printed in the form of a function as shown below.

javascript
// function is being called.
function get_Value_of_natural_log_of_2() {
    return Math.LN2;
}

// Calling Function.
console.log(get_Value_of_natural_log_of_2());

Output: 

0.6931471805599453

Example 3: Here we consider Math.LN2 is a function but in actuality, it is a property which is why the error as output is being shown.

javascript
// Here we consider Math.LN2 as a 
// function but in actual it
// is a property that is why error as
// output is being shown.
console.log(Math.LN2(12));

Output: 

Error: Math.LN2 is not a function

Note: Check the console for errors.

We have a complete list of Javascript Math Objects methods, to check those please go through this Javascript Math Object Complete reference article.

Supported Browsers: 



RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4