Math.SQRT1_2 Property with Example in JavaScript

JavaScript | Math.SQRT1_2 Property: Here, we are going to learn about the PI Property of Math class in JavaScript with Examples.
Submitted by Shivang Yadav, on February 03, 2020

JavaScript | Math.SQRT1_2 Property

Math.SQRT1_2 is a property in math library of JavaScript that is used to find the value of square root of ½. It is generally used to solve problems related to circular figures.

Syntax:

    Math.SQRT1_2

Parameter(s):

  • N/A

Return value:

The return type of this method is number, it returns the value of SQRT1_2.

Browser support: Chrome, Internet explorer, Mozilla, Safari, Opera mini.

Example 1:

console.log(Math.SQRT1_2);

Output

0.7071067811865476

Example 2: Invalid values

console.log(Math.SQRT1_2("Javascript"));

Output

Uncaught TypeError: Math.SQRT1_2 is not a function
    at <anonymous>:1:18

JavaScript Math Object Methods »





Comments and Discussions!

Load comments ↻






Copyright © 2024 www.includehelp.com. All rights reserved.