1. 只保留整数部分(丢弃小数部分)
parseInt(5.1234); // 5
2. 向下取整(该数值的最大整数,和parseInt()一样)
Math.floor(5.1234); // 5
3. 向上取整(有小数,整数部分就+1)
Math.ceil(5.1234); // 6
4. 四舍五入(小数部分)
Math.round(5.1234); // 5
Math.round(5.6789); // 6
5. 取绝对值
Math.abs(-666); // 666
6. 返回两数中的较大者
Math.max(5,520); // 520
7. 返回两数中的较小者
Math.min(5,100); // 5
8. 随机数
Math.random();