当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


JavaScript Math hypot()用法及代码示例


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

用法

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

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

参数

数字 - 一个数字。

返回

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

JavaScript Math hypot() 方法示例

在这里,我们将通过各种示例来了解 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






相关用法


注:本文由纯净天空筛选整理自 JavaScript Math hypot() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。