ES6 Math.floor( x )
x的底限:小于或等于x的最大整数。
语法
Math.floor( x ) ;
参数
- X - 代表一个数字
例
console.log("---Math.floor()---")
console.log("Math.floor(2.8) : "+Math.floor(2.8))
console.log("Math.floor(-3.2) : "+Math.floor(-3.2))
输出
---Math.floor()---
Math.floor(2.8) : 2
Math.floor(-3.2) : -4
它返回x的整数部分(删除所有小数位)。语法Math.trunc( x ) ;参数X - 代表一个数字例console.log("---Math.trunc()---")console.log("Mat ...