JavaScript复杂的算术运算总结:Math
1、Math.pow(2,2) //2的2次幂
2、Math.round(.6) //四舍五入
3、Math.ceil(.6) //向上求整
4、Math.floor(.6) //向下求整
5、Math.abs(-5) //绝对值
6、Math.max(x,y,z) //返回最大值
7、Math.min(x,y,z) //返回最小值
8、Math.random() //大于等于0且小于1.0的伪随机数
9、Math.PI // π:圆周率
10、Math.E // e:自然对数的底数
11、Math.sqrt(3) //3的平方根
12、Math.pow(3,1/3) //3的立方根
13、Math.sin(0) Math.cos(0) Math.atan(0) //三角函数
14、Math.log(10) //10的对数
15、Math.log(100)/Math.LN10 //以10为低100的对数
16、Math.log(100)/Math.LN2 //以2为低100的对数
17、Math.exp(3) //e的三次幂