Math对象
Math.PI // 圆周率
Math.random()// 生成随机数,范围[0,1)
Math.floor()/Math.ceil()// 向下取整/向上取整
Math.round() // 取整,四舍五入
Math.abs() // 绝对值
Math.max()/Math.min()// 求最大和最小值
Math.sin()/Math.cos()// 正弦/余弦
Math.power()/Math.sqrt() // 求指数次幂/求平方根
//1-10随机数
Math.ceil(Math.random()*10)