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