I'm facing the following issue/behavior:
console.log(1234567892012.123456); // 1234567892012.1234
console.log(12345678920123.123456); // 12345678920123.123
console.log(123456789201234.123456); // 123456789201234.12
What is causing this? Are decimal places limited for big numbers/floats?
Is it related to the IEEE 754 standard (as explained here: Is floating point math broken?)?
And finally - how can I come around this issue?