• JavaScript Video Tutorials

JavaScript - Math SQRT2 Property



Description

It returns the square root of 2 which is approximately 1.414.

Syntax

Its syntax is as follows −

Math.SQRT2

Example

Try the following example program.

<html>   
   <head>
      <title>JavaScript Math SQRT2 Property</title>
   </head>
   
   <body>      
      <script type = "text/javascript">
         var property_value = Math.SQRT2
         document.write("Property Value is : " + property_value); 
      </script>   
   </body>
</html>

Output

Property Value is : 1.4142135623730951
javascript_math_object.htm
Advertisements