JavaScript Math对象
Math对象属性:
Math.pow(2,53) //2的53次幂
Math.round(.6) //1.0 四舍五入
Math.ceil(.6) //1.0 向上取整
Math.floor(.6) //0.0 向下取整
Math.abs(-5) //5 求绝对值
Math.max(a,b,c) //返回最大值
Math.min(a,b,c) //返回最小值
Math.random() //生成一个大于等于0小于1.0的随机数
Math.PI //圆周率π
Math.E //自然对数的底数
Math.sqrt(3) //3的平方根
Math.pow(3,1/3) //3的立方根
Math.sin(a) //三角函数,cos asin等
Math.log(10) //10的对数
Math.log(100)/Math.LN10 //10为底100的对数
Math.log(512)/Math.LN2 //10为底512的对数
Math.exp(3) //e的3次幂