79774078

Date: 2025-09-24 19:04:47
Score: 0.5
Natty:
Report link

number_format is NOT exact toFixed equivelant.

PHP:

number_format(0.585*11, 2, '.', "");
string(4) "6.44"

Javascript toFixed has a flaw:

(0.585*11).toFixed(2);
"6.43"

Live with it ... or don't use float for finances.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Alpha and Omega