Math.abs(-1) // 1 返回参数的绝对值 Math.max(1, 2) //2 返回参数中的最大值 Math.min(-1, -2) //-2 返回参数中的最小值 Math.floor(24.2) //24 返回小于该参数的最大整数 Math.ceil(3.3) //4 返回大于该参数的最小整数 Math.pow(x,y) //x的y次幂