1.Math.floor();例子:function getFloor(x) { return Math.floor(x)} 如果你傳遞45.95 給getFloor()函數(shù), 返回45; 如果傳遞的參數(shù)為-45.95, 返回-46.2.Math.ceil()例子:function getCeil(x) { return Math.ceil(x)} 如果你傳遞的參數(shù)是45.95 給函數(shù) getCeil, 返回46; 如果傳遞的參數(shù)為-45.95, 返回-45.