(10765432100123456789).toString()
in a browser JavaScript console, the result will be "10765432100123458000"
- the 64-bit integer loses accuracy as a result of the translation (this is sometimes called “munging” - a destructive change to a piece of data).
In X APIs up to version 1.1, you should always use the string representation of the number to avoid losing accuracy.
In newer versions of the API, all large integer values are represented as strings by default.