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: 2020-06-25T12:30:51+05:30

151 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements