产生随机数 [0,1)
Math.random()
圆周率常量
Math.PI
求绝对值
Math.abs();
向上取整 1.2->2
Math.ceil()
向下取整 1.2 -》1
Math.floor();
四舍五入,取整
Math.round();
//平方根 n的m次方
Math.pow(n,m)
产生随机数 [0,1)
Math.random()
圆周率常量
Math.PI
求绝对值
Math.abs();
向上取整 1.2->2
Math.ceil()
向下取整 1.2 -》1
Math.floor();
四舍五入,取整
Math.round();
//平方根 n的m次方
Math.pow(n,m)