Math.max()
function returns the largest of the zero or more numbers given as input parameters.
The source for this interactive example is stored in a GitHub repository. If you'd like to contribute to the interactive examples project, please clone https://github.com/mdn/interactive-examples and send us a pull request.
Math.max([value1[, value2[, ...]]])
value1, value2, ...
Numbers.
The largest of the given numbers. If at least one of the arguments cannot be converted to a number,
NaN
被返回。
因为
Math
is not a constructor,
max()
is a static method of
Math
(You always use it as
Math.max()
, rather than as a method of an instanced
Math
对象)。
-
Infinity
is the initial comparant because almost every other value is bigger, that's why when no arguments are given, -
Infinity
被返回。
If at least one of arguments cannot be converted to a number, the result is
NaN
.
Math.max()
Math.max(10, 20); // 20 Math.max(-10, -20); // -10 Math.max(-10, 20); // 20
Array.reduce()
can be used to find the maximum element in a numeric array, by comparing each value:
var arr = [1,2,3];
var max = arr.reduce(function(a, b) {
return Math.max(a, b);
});
The following function uses
Function.prototype.apply()
to get the maximum of an array.
getMaxOfArray([1, 2, 3])
相当于
Math.max(1, 2, 3)
, but you can use
getMaxOfArray()
on programmatically constructed arrays. This should only be used for arrays with relatively few elements.
function getMaxOfArray(numArray) {
return Math.max.apply(null, numArray);
}
The new
spread operator
is a shorter way of writing the
apply
solution to get the maximum of an array:
var arr = [1, 2, 3]; var max = Math.max(...arr);
However, both spread (
...
) and
apply
will either fail or return the wrong result if the array has too many elements, because they try to pass the array elements as function parameters. See
使用
apply
and built-in functions
for more details. The
reduce
solution does not have this problem.
| 规范 |
|---|
|
ECMAScript (ECMA-262)
The definition of 'Math.max' in that specification. |
The compatibility table in this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.
更新 GitHub 上的兼容性数据| Desktop | Mobile | Server | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
max
|
Chrome 1 | Edge 12 | Firefox 1 | IE 3 | Opera 3 | Safari 1 | WebView Android 1 | Chrome Android 18 | Firefox Android 4 | Opera Android 10.1 | Safari iOS 1 | Samsung Internet Android 1.0 | nodejs 0.1.100 |
完整支持
Math
Math.abs()
Math.acos()
Math.acosh()
Math.asin()
Math.asinh()
Math.atan()
Math.atan2()
Math.atanh()
Math.cbrt()
Math.ceil()
Math.clz32()
Math.cos()
Math.cosh()
Math.exp()
Math.expm1()
Math.floor()
Math.fround()
Math.hypot()
Math.imul()
Math.log()
Math.log10()
Math.log1p()
Math.log2()
Math.max()
Math.min()
Math.pow()
Math.random()
Math.round()
Math.sign()
Math.sin()
Math.sinh()
Math.sqrt()
Math.tan()
Math.tanh()
Math.trunc()
Object
Object.prototype.__defineGetter__()
Object.prototype.__defineSetter__()
Object.prototype.__lookupGetter__()
Object.prototype.__lookupSetter__()
Object.prototype.hasOwnProperty()
Object.prototype.isPrototypeOf()
Object.prototype.propertyIsEnumerable()
Object.prototype.toLocaleString()
Object.prototype.toSource()
Object.prototype.toString()
Object.prototype.valueOf()
Object.setPrototypeOf()