max() -- 返回数个数字中较大的值
Math.max( x, y, ... );
0 或多个值( Number类型值 )。在 ECMASCript v3 之前,该方法只有两个参数。
console.log( Math.max( 1, 3 ) );
console.log( Math.max( 5, 1, 0, 10, 7 ) );
console.log( Math.max() );
console.log( Math.max( 0 ) );
console.log( Math.max( 'x', 10 ) );
>>>
3
10
-Infinity
0
NaN