1.获取π值
Math.PI //结果:3.141592653589793
2.四舍五入取整
Math.round(6.8); //结果:7 Math.round(2.3); //结果:2
3.求x的y次幂
Math.pow(8,2); //结果是:64
4.求平方根
Math.sqrt(64); //结果是:8
5.求绝对值,正值
Math.abs(-4.7); //结果:4.7
6.往上取舍,最接近的整数
Math.ceil(6.4); //结果:7
7.往下取舍,最接近的整数
Math.floor(2.7); //结果:2
8.查找最小值
Math.min(0,450,35,10,-10,-200); //结果:-200
9.查最大值
Math.max(0,450,35,-52,-10); //结果:450
10.获取随机数0(包括)~1(不包括)
Math.random();
11.random配合floor可以返回随机整数
Math.floor(Math.random() * 10); //结果:0~9之间的整数