当Math.round() 遇到 .5

Posted ladybug7

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了当Math.round() 遇到 .5相关的知识,希望对你有一定的参考价值。

Math.round(1.5)    //  2

Math.round(-1.5)   // -1

往大的取,   1 和 2 比较2大,所以Math.round(1.5) 的结果为 2;

                   -2 和 -1 比较-1大,所以Math.round(-1.5)  的结果为 -1;

以上是关于当Math.round() 遇到 .5的主要内容,如果未能解决你的问题,请参考以下文章

js的向上取整(Math.ceil)向下取整(Math.floor)四舍五入(Math.round)

Math.round(),Math.ceil(),Math.floor()的区别

Math.round(),Math.ceil(),Math.floor()的区别

随机函数与JSON

js中Math.roundparseIntMath.floor和Math.ceil小数取整总结

Math roundceilfloor