ceil的全称ceiling n.天花板
顾名思义他像天花板一样,众所周知天花板很高吧,所以
·Math.ceil()是向上取整
eg:console.log(Math.ceil(8.8));
-->9
floor n.地板
有刚刚ceiling的铺垫,地板就是在脚下,一切就很好解释了
·Math.floor()是向下取整
eg:console.log(Math.floor(8.8));
-->8
round ad.周围
周围容易想到四舍五入,他就是四舍五入
·Math.round()四舍五入取整
eg:console.log(Math.ceil(8.8));
-->9
ps:我承认有过度解读嫌疑🤡