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();