in js, there is a number 12345678901234.123456. The result can only display 12345678901234.123.
is truncated when it is formatted.
""+12345678901234.123456;//12345678901234.123
(12345678901234.123456).toString();//12345678901234.123
I wonder if there is any way to keep this original number? Even if it is converted to a string.