1. math.max() 取最大值
    2. math.min() 取最小值
    3. math.ceil() 上取整
    4. math.floor() 下取整
    5. math.round() 四舍五入取整
    6. math.random() 随机数 0<=num<1
    1. var num = 12.66;
    2. console.log(Math.ceil(num)); // 13
    3. console.log(Math.floor(num)); //12
    4. console.log(Math.round(num)); //13
    5. console.log(Math.random());