Math.trunc( x ) Math.floor( x ) Math.round( x ) 它返回x的整数部分(删除所有小数位)。 语法 Math.trunc( x ) ; 参数 X - 代表一个数字 例 console.log("---Math.trunc()---") console.log("Math.trunc(7.7) : "+Math.trunc(7.7)) console.log("Math.trunc(-5.8) : "+Math.trunc(-5.8)) 输出 ---Math.trunc()--- Math.trunc(7.7) : 7 Math.trunc(-5.8) : -5 Math.floor( x ) Math.round( x )