that's likely a rabbit hole right here... Trying to guess which locale the number is in to distinguish between 1,000 being a float with int 1 and fraction 000 and an int 1000 with thousands separator, will be tricky.
And then, other numbering systems come in... In JS we decided not to do that for this reason.
that's likely a rabbit hole right here... Trying to guess which locale the number is in to distinguish between
1,000
being a float with int1
and fraction000
and an int1000
with thousands separator, will be tricky.And then, other numbering systems come in... In JS we decided not to do that for this reason.