As of Firefox 137, I intend to enable Math.sumPrecise by default
on all platforms. It is currently enabled only in Nightly builds, behind the `javascript.options.experimental.math_sumprecise` preference. Math.sumPrecise minimizes the rounding error when summing a sequence of floating point numbers, that is, it provides a better result than naively adding x1 + x2 + x3 + x4 + ... one by one. Our implementation makes use of Radford Neal's xsum library, and was contributed by a volunteer, Debadree Chatterjee. Thanks Debadree :)