Math.max()
函数的语法为:
Math.max(n1, n2, ..., nx)
使用Math
类名称调用作为静态方法的max()
。
Math.max()参数
Math.max()
函数采用任意(一个或多个)数字作为参数。
从Math.max()返回值
- 返回给定数字中的最大数字。
- 如果至少一个参数不能转换为数字,则返回
NaN
。 - 如果未提供任何参数,则返回
-Infinity
。-Infinity
是初始比较项,因为所有数字都大于-Infinity
。
示例1:使用Math.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数学min()