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

Math.round(x)

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

它将数字四舍五入为最接近的整数。

语法 (Syntax)

Math.round( x ) ;      

参数 (Parameter)

  • X - 代表一个数字

例子 (Example)

console.log("---Math.round()---") 
console.log("Math.round(7.2) : "+Math.round(7.2)) 
console.log("Math.round(-7.7) : "+Math.round(-7.7))          

输出 (Output)

---Math.round()--- 
Math.round(7.2) : 7 
Math.round(-7.7) : -8