當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。