Math.PI
返回圆周率
Math.PI// 3.1415926
Math.ceil
向上取整
Math.ceil(3.112)// 4
Math.floor()
向下取整
Math.floor(5.999)// 5
Math.round()
四舍五入
Math.floor(4.5)// 5
Math.max()
接受多个参数,返回最大值
Math.max(12,34,23)// 34
Math.min()
接受多个参数,返回最小值
Math.max(12,34,23)// 12
Math.random()
返回一个0~1之间的随机浮点数,包括0不包括1
Math.random()// 0.7030021486057005
js的Math对象还有很多,这只是其中一部分