JSON integers: limit on size

A JSON number is not limited by the spec.

JSON number grammar

Since JSON is an abstract format that is not exclusively targeted at JavaScript, the actual target environment determines the boundaries of what can be interpreted.

It’s also worth noting that there are no “JSON Integers”, they are a sub-set of the “Number” datatype.

Leave a Comment