Math对象
Math.random()
返回0-1之间的随机数
alert(Math.random());//随机
Math.max(num1, num2)
返回较大的数
alert(Math.max(10, 20, 30));//30
Math.min(num1, num2)
返回较小的数
alert(Math.min(10, 20, 30));//10
Math.abs(num)
绝对值
alert(Math.abs(-10));//10
Math.ceil(19.3)
向上取整
alert(Math.ceil("3.1"));//4
Math.floor(11.8)
向下取整
alert(Math.floor("3.9"));//3
Math.pow(x,y)
x的y次方
alert(Math.pow(10, 2));//100
Math.sqrt(num)
开平方
alert(Math.sqrt(100));//10
函数 | 作用 |
---|---|
Math.random() | 返回0-1之间的随机数 |
Math.max(,) | 返回较大的数 |
Math.min(,) | /返回较小的数 |
Math.abs(num) | 绝对值 |
Math.ceil(,) | 向上取整 |
Math.floor(,) | 向下取整 |
Math.pow(x,y) | x的y次方 |
Math.sqrt(num) | 开平方 |