Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

Math.max()

概述

Math.max() 函数返回一组数中的最大值。

语法

Math.max([value1[,value2, ...]]) 

参数

value1, value2, ...
一组数值

描述

由于 maxMath 的静态方法,所以应该像这样使用:Math.max(),而不是作为你创建的 Math 实例的方法。

如果没有参数,则结果为 - Infinity

如果有任一参数不能被转换为数值,则结果为 NaN

示例

例子:使用 Math.max

Math.max(10, 20);   //  20
Math.max(-10, -20); // -10
Math.max(-10, 20);  //  20

下面的方法使用 apply 方法寻找一个数值数组中的最大元素。getMaxOfArray([1,2,3]) 等价于 Math.max(1, 2, 3),但是你可以使用 getMaxOfArray 作用于任意长度的数组上。

function getMaxOfArray(numArray) {
    return Math.max.apply(null, numArray);
}

规范

规范版本 规范状态 注解
ECMAScript 1st Edition. Implemented in JavaScript 1.0 Standard Initial definition.
ECMAScript 2015 (6th Edition, ECMA-262)
Math.max
Standard  
ECMAScript 2015 (6th Edition, ECMA-262)
Math.max
Standard  

浏览器兼容性

Feature Chrome Firefox (Gecko) Internet Explorer Opera Safari
Basic support (Yes) (Yes) (Yes) (Yes) (Yes)
Feature Android Chrome for Android Firefox Mobile (Gecko) IE Mobile Opera Mobile Safari Mobile
Basic support (Yes) (Yes) (Yes) (Yes) (Yes) (Yes)

相关链接

文档标签和贡献者

标签: 
 此页面的贡献者: helloguangxue, tiansh, AlexChao
 最后编辑者: helloguangxue,