min()
Math对象的函数接受多个数字,并返回其中最大的数字。
如果将单个数字传递给此函数,它将返回相同的
并且,如果不传递任何参数,它将返回无穷大。
其语法如下
Math.min(48, 148, 3654);
<html> <head> <title>JavaScript Example</title> </head> <body> <script type="text/javascript"> var result = Math.min(48, 148, 3654); document.write("Minimum of the given numbers: "+result); </script> </body> </html>
输出结果
Maximum of the given numbers: 48