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.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 |
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!