|
|
|
|
|
by cstrahan
235 days ago
|
|
JSON numbers are not JavaScript Numbers. While the grammar is specified (that’s what JSON is, after all), the runtime representation is unspecified. A conformant JSON parser can parse “1” as 1.0. They can be backed by doubles, or singles, or arbitrary precision. |
|