在本教程中,我们将借助示例了解 JavaScript Math.round() 函数。
Math.round()
函数返回四舍五入到最接近整数的数字。那是,3.87四舍五入为4和3.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()用法及代码示例
- JavaScript Math random()用法及代码示例
- JavaScript Math abs()用法及代码示例
- JavaScript Math hypot()用法及代码示例
- JavaScript Math min()用法及代码示例
- JavaScript Math log10()用法及代码示例
- JavaScript Math sqrt()用法及代码示例
- JavaScript Math floor()用法及代码示例
- JavaScript Math tanh()用法及代码示例
- JavaScript Math ceil()用法及代码示例
- JavaScript Math cos()用法及代码示例
- JavaScript Math sin()用法及代码示例
- JavaScript Math log1p()用法及代码示例
- JavaScript Math pow()用法及代码示例
- JavaScript Math trunc()用法及代码示例
- JavaScript Math atan()用法及代码示例
- JavaScript Math log2()用法及代码示例
- JavaScript Math atanh()用法及代码示例
- JavaScript Math tan()用法及代码示例
- JavaScript Math clz32()用法及代码示例
注:本文由纯净天空筛选整理自 JavaScript Math round()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。