js四舍五入ofixed和Math.round语法介绍

js四舍五入ofixed和Math.round语法介绍
                     第一张

本片教程为ofixed和Math.round语法介绍,不废话,只发语法解释和案列,不啰嗦。

Math.round()

round() 方法可把一个数字舍入为最接近的整数,根据“round”的字面意思“附近、周围”,可以猜测该函数是求一个附近的整数。

语法

Math.round(x)

x 必需。必须是数字。返回值是与 x 最接近的整数。

例子:

小数点后第一位<5
正数:Math.round(11.46) = 11
负数:Math.round(-11.46) = -11
小数点后第一位>5
正数:Math.round(11.68) = 12
负数:Math.round(-11.68) = -12
小数点后第一位=5
正数:Math.round(11.5)=12
负数:Math.round(-11.5)=-11

tofixed方法

toFixed() 方法可把 Number 四舍五入为指定小数位数的数字。例如将数据Num保留2位小数,则表示为:toFixed(Num);

语法

NumberObject.toFixed(num)

本文结束

发表评论

登录... 评论区已永久关闭~