ES6 - Math min() 函数



此方法返回零或多个数字中的最小值。如果没有提供参数,则结果为 +Infinity。

语法

Math.min( x1,x2,… ) ;       

参数

  • X1、x2、x3.. − 表示一系列数字

实例

console.log("---Math.min()---") 
console.log("Math.min(1, 2) : "+Math.min(1, 2)) 
console.log("Math.min(3, 0.5, 0.66) : "+Math.min(3, 0.5, 0.66)) 
console.log("Math.min(3, 0.5, -0.66) : "+Math.min(3, 0.5, -0.66))          

输出

---Math.min()--- 
Math.min(1, 2) : 1 
Math.min(3, 0.5, 0.66) : 0.5 
Math.min(3, 0.5, -0.66) : -0.66