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


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


JavaScript Math.max() 函數返回具有最高值的數字。

用法:

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

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

Math.max() 參數

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

從數學返回值。max()

  • 返回給定數字中的最大值。
  • 如果至少一個參數不能轉換為數字,則返回 NaN
  • 如果沒有給出參數,則返回 -Infinity-Infinity 是初始比較,因為所有數字都大於 -Infinity

示例 1:使用數學。max()

// using Math.max()

var num = Math.max(12, 4, 5, -9, 35);
console.log(num); // 35

var num = Math.max(-0.456, -1);
console.log(num); // -0.456

// Returns -Infinity for no arguments
var num = Math.max();
console.log(num); // -Infinity

// Returns NaN if any non-numeric argument
var num = Math.max("JS", 2, 5, 79);
console.log(num); // NaN

輸出

35
-0.456
-Infinity
NaN

示例 2:在數組上使用 Math.max()

// Math.max() on arrays

// Using the spread operator
var numbers = [4, 1, 2, 55, -9];
var maxNum = Math.max(...numbers);
console.log(maxNum); // 55

// make custom function
function getMaxInArray(arr) {
  return Math.max(...arr);
}

numbers = ["19", 4.5, -7];
console.log(getMaxInArray(numbers)); // 19

輸出

55
19

如您所見,我們可以在函數調用中使用新的擴展運算符... 來解構數組並將其傳遞給Math.max() 並獲得最大的數字。

相關用法


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