它将数字四舍五入为最接近的整数。
Math.round( 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