Math.ceil ( x ) Math.sign( x ) Math.floor( x ) 此方法返回大于或等于数字的最小整数。 语法 Math.ceil ( x ) ; 参数 X - 代表一个数字 例 console.log("---Math.ceil()---") console.log("Math.ceil(2.2) : "+Math.ceil(2.2)) console.log("Math.ceil(-3.8) : "+Math.ceil(-3.8)) 输出 ---Math.ceil()--- Math.ceil(2.2) : 3 Math.ceil(-3.8) : -3 Math.sign( x ) Math.floor( x )