This is invalid JSON. JSON is a data transfer format that requires field names to be separated by double-quoted strings, for example.
{ "info" : { "First Name": "Robert", "Last Name": "Smith" } }
After parsing, you can use obj.info["First Name"] to access the First Name field.
What you have is a JS object literal (which is still not valid), but you can apply the same technique (scribble property names) to achieve the same end goal.
source share