JavaScript 数学(Math)对象方法

JavaScript Math.hypot()方法返回给定数字的平方和的平方根。如果参数无法转换为数字,则返回 NaN。

语法

hypot() 方法由以下语法表示:

Math.hypot([num1[, num2[, ...]]])

参数

num1 - 数字1

num2  - 数字2

......

返回

给定数字的平方和的平方根。

方法示例

这里,我们将通过各种例子来了解hypot()方法。

示例1

让我们看一个hypot()方法的简单例子。

<script>
document.writeln(Math.hypot(3,4)+"<br>");
document.writeln(Math.hypot(12,5));
</script>

输出:

5
13

示例2

让我们看一个带有三个参数的 hypot() 方法的例子。

<script>
document.writeln(Math.hypot(2,3,4)+"<br>");
document.writeln(Math.hypot(-2,-5,-8));
</script>

输出:

5.385164807134504
9.643650760992955