Thursday, September 4, 2025
HomeLanguagesJavascriptJavaScript Math SQRT2 Property

JavaScript Math SQRT2 Property

The Math.SQRT2 is a property in JavaScript which is simply used to find the value of the square root of 2, whose value is approximately 1.4142. That is,

√ 2  = 1.4142

Syntax:

Math.SQRT2;

Return Value: It simply returns the value of the square root of 2, whose value is approximately 1.4142. 

Below is an example of the Math SQRT2 Property.

Example 1: This example returns the square root of 2 using the Math SQRT2 Property.

javascript




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


Output:

1.4142135623730951

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

javascript




// function is being called.
function get_Value_of_square_root() {
    return Math.SQRT2;
}
 
// function is calling for getting
// value of square root of 2
console.log(get_Value_of_square_root());


Output:

1.4142135623730951

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

javascript




// function is being called.
function get_Value_of_square_root() {
    return Math.SQRT2;
}
 
// function is calling for getting
// value of square root of 2
console.log(get_Value_of_square_root());


Output:

Error: Math.SQRT2 is not a function

Example 4: Its application is to find the value of the square root of 2 which is done with the help of this property. In mathematics, it needed a lot. 

javascript




// Value of Math.SQRT2 is printed.
console.log(Math.SQRT2);


Output:

1.4142135623730951

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:

  • Google Chrome 1 and above
  • Internet Explorer 3 and above
  • Firefox 1 and above
  • Opera 3 and above
  • Safari 1 and above
Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, neveropen Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we’ve already empowered, and we’re here to do the same for you. Don’t miss out – check it out now!
RELATED ARTICLES

Most Popular

Dominic
32264 POSTS0 COMMENTS
Milvus
81 POSTS0 COMMENTS
Nango Kala
6629 POSTS0 COMMENTS
Nicole Veronica
11799 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11858 POSTS0 COMMENTS
Shaida Kate Naidoo
6749 POSTS0 COMMENTS
Ted Musemwa
7025 POSTS0 COMMENTS
Thapelo Manthata
6698 POSTS0 COMMENTS
Umr Jansen
6716 POSTS0 COMMENTS