📅  最后修改于: 2023-12-03 15:31:39.164000             🧑  作者: Mango
Math.round()
函数用于将一个数四舍五入为最接近的整数。如果小数部分等于0.5,则将其舍入为最接近的偶数。
Math.round(x)
x
:必需。一个数字。返回与给定数字最接近的整数。
console.log(Math.round(1.45)); // 1
console.log(Math.round(1.55)); // 2
console.log(Math.round(-1.45)); // -1
console.log(Math.round(-1.55)); // -2
Math.round()
函数返回的结果是一个整数。toFixed()
函数。Math.round()
函数是将数字四舍五入为最接近的整数的有效方法。它在处理小数时很有用,可以使结果更加准确。在编写 JavaScript 代码时,了解这些函数可以帮助您编写更好的代码并提高效率。