首页 > 编程开发 > JavaScript    日期:2020-05-27 / 浏览

我们先来看一下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

觉得上面的内容有用吗?快来点个赞吧!

点赞() 我要打赏

温馨提示 : 本站内容来自会员投稿以及互联网,所有源码及教程均为作者总结编辑,请大家在使用过程中提前做好备份,以免发生无法预知的错误,源码类教程请勿直接用于生产环境!

 可能感兴趣的文章