JavaScript's `number` cannot represent the full ra...
# javascript
d
JavaScript's
number
cannot represent the full range of a 64-bit int (
kotlin.Long
). So if the value truly can be a full long range you cannot use
JSON.parse
on that data structure (or you need to represent it as a String in JSON, too), otherwise you get truncated data.