Math

Math 相关方法(小函数):
Math.random(); //0-1随机数
Math.abs(10); //绝对值
Math.max(-20,-100) //最大
Math.min(3,-20,-101,98,7) //最小
Math.pow(n,m); //n的m次方
Math.sqrt(n); //开平方
Math.ceil();//向上取整
Math.floor() //向下取整
Math.round() //四舍五入

你可能感兴趣的:(Math)