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


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()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。