当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Javascript Math.max()用法及代码示例


Math.max()函数用于返回零个或多个数字中的最大值。
如果没有传递任何参数,则结果为“-Infinity”;如果至少一个参数不能转换为数字,则结果为NaN。
max()是Math的静态方法,因此,始终用作Math.max(),而不是用作创建的Math对象的方法。

用法:

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

参数:此函数接受发送到math.max()函数的Value1,Value2值以查找最大值。


返回值:Math.max()函数返回给定数字中的最大数字。

例子:

Input  : Math.max(10, 32, 2)
Output : 32
     
Input  : Math.max(-10, -32, -1)
Output : -1

Input  : Math.max()
Output : -Infinity


Input  : Math.max(10,2,NaN)
Output : Nan

让我们看一下有关此函数的一些JavaScript代码:

  • 示例1:当传递正数作为参数时。
    <script type="text/javascript"> 
       document.write("Output : " + Math.max(10, 32, 2)); 
    </script>

    输出:

    Output : 32
  • 示例2:当传递负数作为参数时。
    <script type="text/javascript"> 
       document.write("Output : " + Math.max(-10, -32, -1)); 
    </script>

    输出:

    Output : -1
  • 示例3:没有参数传递时。
    <script type="text/javascript"> 
       document.write("Output : " + Math.max()); 
    </script>

    输出:

    Output : -Infinity
  • 示例4:当NaN作为参数传递时。
    <script type="text/javascript"> 
       document.write("Output : " + Math.max(10,2,NaN)); 
    </script>

    输出:

    Output : NaN

支持的浏览器:下面列出了JavaScript Math.max()函数支持的浏览器:

  • 谷歌浏览器
  • IE浏览器
  • 火狐浏览器
  • Opera
  • 苹果浏览器



注:本文由纯净天空筛选整理自Shubrodeep Banerjee大神的英文原创作品 Math.max() In JavaScript。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。