当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


JavaScript Math round()用法及代码示例


在本教程中,我们将借助示例了解 JavaScript Math.round() 函数。

Math.round()函数返回四舍五入到最接近整数的数字。那是,3.87四舍五入为43.45四舍五入为3.

示例

let number = 3.87;

// round the number to nearest integer
let roundedNumber = Math.round(number);
console.log(roundedNumber);

// Output: 4

数学.round() 语法

用法:

Math.round(x)

round() 是一个静态方法,使用 Math 类名调用。

Math.round() 参数

Math.round() 函数接受:

  • x - 一个数字

从数学返回值。round()

Math.round() 返回四舍五入到最接近整数的数值,如下所示:

  • 如果小数部分 > 0.5,x四舍五入为绝对值较高的整数。
  • 如果小数部分 < 0.5,x被四舍五入为具有较低绝对值的整数。
  • 如果小数部分 = 0.5,x在 方向上四舍五入到下一个整数+∞.

示例:使用数学。round()

// using Math.round()
var num = Math.round(1.8645);
console.log(num); // 2

var num = Math.round(10.49);
console.log(num); // 10

var num = Math.round(4.5);
console.log(num); // 5

var num = Math.round(-4.5);
console.log(num); // -4

// Returns 0 for null
var num = Math.round(null);
console.log(num); // 0

// Returns NaN for non-numeric types
var num = Math.round("JavaScript");
console.log(num); // NaN

输出

2
10
5
-4
0
NaN

注意: Math.round()返回0为了null而不是NaN.

相关用法


注:本文由纯净天空筛选整理自 JavaScript Math round()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。