TIL JavaScript limits integers to 53 bit values.
@yonomitt Have you explored Javascript's BigInt or maybe its typed arrays?
@kvndy I’m only indirectly using JS. I discovered this because my code is interfacing with a JS backend and the numbers I sent it weren’t quite the same as the ones I was getting back. They were close but not exact.