• round() 方法
    • 语法:
    • 参数说明:
    • 返回值:
    • 说明:
      • 示例:
      • 结果:

    round() 方法

    round() — 把一个数字舍入为最接近的整数

    语法:
    1. Math.round(x);
    参数说明:

    x — 待处理的数字

    返回值:

    与 x 最接近的整数

    说明:

    对于 0.5,该方法将进行上舍入。

    ( 例如,3.5 将舍入为 4,而 -3.5 将舍入为 -3。)

    示例:
    1. console.log( Math.round(0.80) );
    2. console.log( Math.round(0.50) );
    3. console.log( Math.round(0.49) );
    4. console.log( Math.round(-4.40) );
    5. console.log( Math.round(-4.50) );
    6. console.log( Math.round(-4.60) );
    结果:
    1. >>>
    2. 1
    3. 1
    4. 0
    5. -4
    6. -4
    7. -5