文件名称:round-tofixed:正确将JavaScript数字四舍五入到固定的小数位数
文件大小:25KB
文件格式:ZIP
更新时间:2024-06-16 09:36:11
JavaScript
圆角固定的 正确将JavaScript数字四舍五入到固定的小数位数 概述 round-tofixed解决了在JavaScript中舍入十进制数字时的常见问题: Math.round()内置函数只能四舍五入为整数 常用的十进制数字舍入方法会产生错误的结果 舍入方法比较 对以``5''结尾的1,040,000个随机数进行四舍五入的测试结果: 方法 失误 总分数 平均错误率 固定号码 93,686 9.008% 0.03391 然后相除 7,780 0.7481% 0.005592 指数+/- 549 0.6602% N 圆角固定的 0 0% 0 用法 Node.js: // using CommonJS const roundToFixed = require ( "round-to-fixed" ) ; <!-- from an HTML file -->
【文件预览】:
round-tofixed-master
----index.min.js(364B)
----round-tofixed.js(2KB)
----index.js(985B)
----package.json(651B)
----test()
--------test-browser.html(1KB)
--------testround-out.txt(997B)
--------testround.js(4KB)
----gulpfile.js(1KB)
----LICENSE(1KB)
----package-lock.json(50KB)
----round-tofixed.min.js(1KB)
----README.md(4KB)
----build.sh(333B)