JavaScript Math.max() 方法

 JavaScript Math 对象

Math.max()方法返回最大数字。

如果未提供任何参数,则结果为-Infinity。

如果至少一个参数不能转换为数字,则结果为NaN。

由于max()是Math的静态方法,因此您始终将其用作Math.max(),而不是用作创建的Math对象的方法。

语法:

Math.max(n1, n2, n3, ..., nX)
Math.max(10, 20); //  20
Math.max(-10, -20);   // -10
Math.max(1, 3, 2);//  3
Math.max(4, 3, 7, 12);//  12
Math.max(5, 2, 2, 4, 97, 26); //  97
测试看看‹/›

浏览器兼容性

所有浏览器都完全支持Math.max()方法:

Method
Math.max()

参数值

参数描述
n1, n2, n3, ..., nX一个或多个数字进行比较

技术细节

返回值:给定数字中最大的。如果至少一个参数不能转换为数字,则返回NaN
JavaScript版本:ECMAScript 1

 JavaScript Math 对象