将数字四舍五入到最接近的整数。
Math.round(x) - 语法
Math.round( x ) ;
- x - 代表数字
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
参考链接
https://www.learnfk.com/es6/es6-math-round.html
标签:7.2,console,无涯,---,7.7,round,Math From: https://blog.51cto.com/u_14033984/9632589