Computer >> Computer tutorials >  >> Programming >> Javascript

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

<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