Maybe I'm missing some context here and I shouldn't jump in, but doesn't JSON support integers (technically numbers, of which integers are a subset).
JSON.stringify({x: 5}); // '{"x":5}'
As per json.org they fall into the value category.
Maybe I'm missing some context here and I shouldn't jump in, but doesn't JSON support integers (technically numbers, of which integers are a subset).
JSON.stringify({x: 5}); // '{"x":5}'
As per json.org they fall into the value category.