📅  最后修改于: 2023-12-03 15:01:43.796000             🧑  作者: Mango
在Javascript中,可以使用许多内置的数学函数来执行各种计算。其中一些函数被称为“天花板函数”,用于返回某个数的最小整数值,该整数值大于或等于这个数。下面是几个常见的数学天花板函数:
Math.ceil()
函数向上舍入一个数字,并返回大于或等于该数字的最小整数。
const x = 4.1;
const y = 4.9;
console.log(Math.ceil(x)); // 输出:5
console.log(Math.ceil(y)); // 输出:5
Math.floor()
函数将一个数字向下舍入,并返回小于或等于该数字的最大整数。
const x = 4.1;
const y = 4.9;
console.log(Math.floor(x)); // 输出:4
console.log(Math.floor(y)); // 输出:4
Math.round()
函数将一个数字四舍五入,并返回最接近的整数。
const x = 4.1;
const y = 4.9;
console.log(Math.round(x)); // 输出:4
console.log(Math.round(y)); // 输出:5
Math.trunc()
函数将一个数字的小数部分去除,并返回整数部分。
const x = 4.9;
console.log(Math.trunc(x)); // 输出:4
以上就是Javascript中常用的数学天花板函数。使用这些函数可以轻松处理数字并进行各种计算。