JSON only resolves key names. These lines may consist of numerical values.
However, you are not using JSON. You have a JavaScript object literal. You can use identifiers for keys, but an identifier cannot begin with a number. However, you can still use strings.
var Game={ "status": [ { "0": "val", "1": "val", "2": "val" }, { "0": "val", "1": "val", "2": "val" } ] }
If you access properties with dotted notation, you need to use identifiers. Instead, use the square notation: Game[0][0] .
But given this data, the array seems to make more sense.
var Game={ "status": [ [ "val", "val", "val" ], [ "val", "val", "val" ] ] }
Quentin Jan 6 2018-12-12T00: 00Z
source share