ES6 - Math trunc() 函数



返回 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          
广告