ES6 - Math round() 函数



对数字进行四舍五入,使其接近于最接近的整数。

语法

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         
广告