1、获取π的值 Math.PI //=>3.141592653....
2、获取某些数中的最大值 Math.max(1,33,4); //=>33
3、获取某些数中的最小数 Math.min(1,33,4); //=>1
4、四舍五入 Math.round(12.53); //=>13
5、向上舍入 Math.ceil(12.1); // =>13
6、向下舍入 Math.floor(12.9); //=>12
7、获取0~1之间的随机数,不包括0和1 Math.random();
1、获取π的值 Math.PI //=>3.141592653....
2、获取某些数中的最大值 Math.max(1,33,4); //=>33
3、获取某些数中的最小数 Math.min(1,33,4); //=>1
4、四舍五入 Math.round(12.53); //=>13
5、向上舍入 Math.ceil(12.1); // =>13
6、向下舍入 Math.floor(12.9); //=>12
7、获取0~1之间的随机数,不包括0和1 Math.random();