JS中min函数实例讲解
我们先来看一下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
相关推荐
gufudhn 2020-06-06
nercon 2020-06-02
88274956 2020-11-03
runner 2020-09-01
梦的天空 2020-08-25
移动开发与培训 2020-08-16
ReunionIsland 2020-08-16
lyqdanang 2020-08-16
MyNameIsXiaoLai 2020-07-08
星辰的笔记 2020-07-04
csstpeixun 2020-06-28
letheashura 2020-06-26
liaoxuewu 2020-06-26
sunzhihaofuture 2020-06-21
FEvivi 2020-06-16
坚持着执着 2020-06-16
waterv 2020-06-14
xiaoge00 2020-06-14
firejq 2020-06-14
firstboy0 2020-06-14
e度空间 2020-06-12