x的底限:小于或等于x的最大整数。
Math.floor( 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