ES6 Math.round( x )
它将数字四舍五入为最接近的整数。
语法
Math.round( x ) ;
参数
- X - 代表一个数字
例
console.log("---Math.round()---")
console.log("Math.round(7.2) : "+Math.round(7.2))
console.log("Math.round(-7.7) : "+Math.round(-7.7))
输出
---Math.round()---
Math.round(7.2) : 7
Math.round(-7.7) : -8
此方法返回零或更多数字中的最小值。如果没有给出参数,则结果为+ Infinity。语法Math.min( x1,x2,… ) ;参数X1,x2,x3 .. - 代表一系列数字例console. ...