Why would you use a string in JSON to represent a decimal number
The main reason to transfer numeric values in JSON as strings is to eliminate any loss of precision or ambiguity in transfer. It’s true that the JSON spec does not specify a precision for numeric values. This does not mean that JSON numbers have infinite precision. It means that numeric precision is not specified, which … Read more