最新的Web开发教程
 

JavaScript round() Method

<JavaScript的Math对象

回合数为最接近的整数:

Math.round(2.5);

其结果将是:

3
试一试»

更多"Try it Yourself"下面的例子。


定义和用法

所述round()方法数字舍入到最接近的整数。

注:2.49将被舍去,2.5将被四舍五入。


浏览器支持

方法
round()

句法

Math.round( x )

参数值

参数 描述
x 需要。 数量要四舍五入

技术细节

返回值: 一个数字,表示最接近的整数
JavaScript的版本: 1.0

例子

更多示例

回合不同的数字最接近的整数:

var a = Math.round(2.60);
var b = Math.round(2.50);
var c = Math.round(2.49);
var d = Math.round(-2.60);
var e = Math.round(-2.50);
var f = Math.round(-2.49);

结果,B,C,D,EF将是:

3
3
2
-3
-2
-2
试一试»

<JavaScript的Math对象