max() 方法

max() — 返回数个数字中较大的值

语法:
  1. Math.max( x, y, ... );
参数说明:

0 或多个值( Number类型值 )。在 ECMASCript v3 之前,该方法只有两个参数。

返回值:
  • 返回数个数值中较大的值
  • 如果没有参数,则返回 -Infinity
  • 如果有某个参数为 NaN,或是不能转换成数字的非数字值,则返回 NaN。
示例:
  1. console.log( Math.max( 1, 3 ) );
  2. console.log( Math.max( 5, 1, 0, 10, 7 ) );
  3. console.log( Math.max() );
  4. console.log( Math.max( 0 ) );
  5. console.log( Math.max( 'x', 10 ) );
结果:
  1. >>>
  2. 3
  3. 10
  4. -Infinity
  5. 0
  6. NaN