1、只保留整数部分
parseInt(5.1234); //输出:5
2、向下取整
Math.floor(5.1234); //输出:5
3、向上取整
Math.ceil(5.1234); //输出:6
4、四舍五入
Math.round(5.1234); //输出:5 Math.round(5.6789); //输出:6
5、绝对值
Math.abs(-5); //输出:5
6、取得两者中较大的值
Math.max(5,2); //输出:5
7、取得两者中较小的值
Math.min(5,2); //输出:2
8、获取(0-1)之间的随机数
Math.random();