此方法返回零或多个数字中的最大值。如果未提供任何参数,则输出为–Infinity。

Math.max - 语法

Math.max(x1,x2,x3..)      
  • X1,x2,x3 ..   -  代表一系列数字

Math.max - 示例

console.log("---Math.max()---") 
console.log("Math.max(3, 0.5, 0.66) : "+Math.max(3, 0.5, 0.66)) 
console.log("Math.max(-3, 0.5, -0.66) : "+Math.max(-3, 0.5, -0.66))          

运行上面代码输出

---Math.max()--- 
Math.max(3, 0.5, 0.66) : 3 
Math.max(-3, 0.5, -0.66) : 0.5       

参考链接

https://www.learnfk.com/es6/es6-math-max.html