Open In App

JavaScript Math hypot( ) Method

Improve
Improve
Like Article
Like
Save
Share
Report

The Math.hypot() method in JavaScript is used to calculate the square root of the sum of squares of numbers passed to it as arguments. 

It is basically used to find the hypotenuse of a right-angled triangle or the magnitude of a complex number. Math.hypot() method uses the formula Math.sqrt(v1*v1 + v2*v2) where v1 and v2 are either the sides of the triangle or the real and complex values. 

The hypot() is a static method of Math and therefore it is always used as Math.hypot() and not as a method of a Math object created. 

Syntax:

Math.hypot(value1, value2,....)

Parameters: The Math.hypot() method accepts a list of numbers as parameters separated by the comma ‘,’ operator. In the above syntax, value1, and value2 are values that the user wants to send to the hypot() method.

Return Value: The Math.hypot() method returns the square root of the sum of squares of the passed arguments. It returns NaN if at least one of the arguments cannot be converted to a number. 

Below programs illustrates the Math.hypot() method in JavaScript:

Example 1: When two positive numbers are passed as parameters: 

Javascript




console.log(Math.hypot(3, 4));


Output

5

Example 2: When two negative numbers are passed as parameters: 

Javascript




console.log(Math.hypot(-3, -4));


Output

5

Example 3: When more than two numbers are passed as parameters: 

Javascript




console.log(Math.hypot(3, 6, 7));


Output

9.695359714832659

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 38 and above
  • Firefox 27 and above
  • Opera 25 and above
  • Safari 8 and above


Last Updated : 01 Aug, 2023
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads