主题: 主要记录一下js中的一些Math函数 Detail: 1. 四舍五入: Math.round(1.23); // 1 2...只取整数: Math.parseInt(1.23); // 1 3. 向上取整数: Math.floor(1.23); // 1 4. 向下取整: Math.ceil(1.23); // 2 5...取绝对值: Math.abs(-1.23); //1.23 6.取两者较大值: Math.max(...