目录

JavaScript Math.max()

示例

let x = Math.max(5, 10);
亲自试一试 »

更多示例

let a = Math.max(5, 10);
let b = Math.max(0, 150, 30, 20, 38);
let c = Math.max(-5, 10);
let d = Math.max(-5, -10);
let e = Math.max(1.5, 2.5);
亲自试一试 »

描述

这个Math.max()方法返回具有最高值的数字。

也可以看看:

Math.min() 方法


语法

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

参数

Parameter Description
n1, n2,... Optional.
One or more numbers to compare.

返回值

类型 描述
数字 参数的最大数量。
-Infinity如果没有给出参数。
NaN如果参数之一不是数字。


浏览器支持

Math.max()是 ECMAScript1 (ES1) 功能。

所有浏览器均完全支持 ES1 (JavaScript 1997):

Chrome Edge Firefox Safari Opera IE
Yes Yes Yes Yes Yes Yes