Math. hypot() function in JavaScript


The hypot() function of the Math object accepts numbers and returns the square root of the sum of squares of the given numbers.

Syntax

Its Syntax is as follows

Math.hypot(12, 58, 66);

Example

 Live Demo

<html>
<head>
   <title>JavaScript Example</title>
</head>
<body>
   <script type="text/javascript">
      var result = Math.hypot(12, 58, 66);
      document.write("hypot value: "+result);
   </script>
</body>
</html>

Output

hypot value: 88.67919710958147

Updated on: 25-Jun-2020

96 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements