我们先来看一下min函数的基本语法

Math.min(value1,value2,...)

 

Value1,Value2,……:传递到math.min()函数的值,用于查找最小值。

我们下面来看具体示例

代码如下

参数是正数和负数时:

代码如下

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title></title>
</head>
<body>
<script type="text/javascript">
  document.write("Output : " + Math.min(10, 32, 2)); 
 document.write("Output : " + Math.min(-10, -32, -1));    
</script>
</body>
</html>

执行结果如下:

Output : 1
Output : -32

没有参数传递时

代码如下:

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title></title>
</head>
<body>
<script type="text/javascript">
 document.write("Output : " + Math.min());    
</script>
</body>
</html>

执行结果如下

Output : -Infinity

当参数中有参数无法转换为数字时:

代码如下

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title></title>
</head>
<body>
<script type="text/javascript">
  document.write("Output : " + Math.min(10,2,NaN));    
</script>
</body>
</html>

执行结果如下

Output : NaN

华山资源网 Design By www.eoogi.com
广告合作:本站广告合作请联系QQ:858582 申请时备注:广告合作(否则不回)
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
华山资源网 Design By www.eoogi.com