等于-1,

    //向上取整
    Math.ceil()

    //向下取整
    Math.floor()

    //四舍五入
    Math.round()

    因为在数轴上取值时,中间值(0.5)向右取整,所以正 0.5 是往上取整,负 0.5 是直接舍弃。