在 JavaScript 中向下舍入数字
How to Round Down a Number in JavaScript
要向下舍入一个数字,将其传递给Math.floor()
函数,例如
Math.floor(5.5)
。该Math.floor
函数返回一个数字,该数字表示小于或等于提供的数字的最大整数。
索引.js
console.log(Math.floor(3.99)); // 👉️ 3 console.log(Math.floor(3.009)); // 👉️ 3 console.log(Math.floor(-3.01)); // 👉️ -4 console.log(Math.floor(-3.99)); // 👉️ -4 console.log(Math.floor(null)); // 👉️ 0
我们使用
Math.floor
函数将数字向下舍入。
该函数将带有小数部分的数字四舍五入为小于传入数字的最大整数。
如果数字是整数,则按原样返回。
索引.js
console.log(Math.floor(5)); // 👉️ 5 console.log(Math.floor(-55)); // 👉️ -55
换句话说,函数向负无穷大舍入。
请注意,如果您向函数传递一个值,该
Math.floor
函数将返回。0
null