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 abs()用法及代碼示例
- JavaScript Math min()用法及代碼示例
- JavaScript Math random()用法及代碼示例
- JavaScript Math sqrt()用法及代碼示例
- JavaScript Math floor()用法及代碼示例
- JavaScript Math tanh()用法及代碼示例
- JavaScript Math ceil()用法及代碼示例
- JavaScript Math cos()用法及代碼示例
- JavaScript Math sin()用法及代碼示例
- JavaScript Math pow()用法及代碼示例
- JavaScript Math trunc()用法及代碼示例
- JavaScript Math atan()用法及代碼示例
- JavaScript Math round()用法及代碼示例
- JavaScript Math atanh()用法及代碼示例
- JavaScript Math tan()用法及代碼示例
- JavaScript Math atan2()用法及代碼示例
- JavaScript Math cbrt()用法及代碼示例
- JavaScript Math sinh()用法及代碼示例
- JavaScript Math acos()用法及代碼示例
- JavaScript Math max()用法及代碼示例
注:本文由純淨天空篩選整理自 JavaScript Math hypot() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。