当前位置: 首页 > 文档资料 > ES6 入门教程 >

Math.max((x1, x2,...)

优质
小牛编辑
128浏览
2023-12-01

此方法返回零个或多个数字中的最大值。 如果没有给出参数,则结果为-Infinity。

语法 (Syntax)

Math.max(x1,x2,x3..)      

参数 (Parameter)

  • X1,x2,x3 .. - 代表一系列数字

例子 (Example)

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))          

输出 (Output)

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