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


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


JavaScript Math.hypot() 函數返回其參數的平方和的平方根。

它返回 Math.sqrt(n1*n1 + n2*n2 + ... + nx*nx)

它表示點 (n1, n2, ..., nx) 與原點之間的距離。

用法:

Math.hypot(n1, n2, ..., nx)

hypot() 是一個靜態方法,使用 Math 類名調用。

Math.hypot() 參數

Math.hypot() 函數接受任意(一個或多個)數字作為參數。

從數學返回值。hypot()

  • 返回給定參數的平方和的平方根。
  • 如果任何參數不是數字,則返回 NaN
  • 返回+0如果沒有給出參數。

示例:使用數學。hypot()

var num = Math.hypot(3, 4);
console.log(num); // 5

var num = Math.hypot(7, 24, 25);
console.log(num); // 35.35533905932738

// single argument is equivalent to absolute value
var num = Math.hypot(-3);
console.log(num); // 3

var num = Math.hypot(3, 4, "5");
console.log(num); // 7.0710678118654755

// returns +0 for no argument
var num = Math.hypot();
console.log(num); // 0

輸出

5
35.35533905932738
3
7.0710678118654755
0

相關用法


注:本文由純淨天空篩選整理自 JavaScript Math hypot()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。