为什么JavaScript的Intl.NumberFormat()不能正确舍入数字?

时间:2020-05-04 07:44:26

标签: javascript number-formatting intl

new Intl.NumberFormat('en-IN', {  maximumFractionDigits: 2 }).format(-4.125)

这将返回-4.13,而round(-4.125, 2)返回的正确值是-4.12,四舍五入为较高的值,更接近于0

0 个答案:

没有答案