Friday, November 15, 2024
Google search engine
HomeLanguagesJavascriptJavaScript Math hypot( ) Method

JavaScript Math hypot( ) Method

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
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

Recent Comments