I never understood why the double quotes around property names are mandatory. For example, in JavaScript, I can write
    { foo: 1, bar: 2 }
    { "foo": 1, "bar": 2 }
Anyone know why JSON was designed this way?
 replies(6):