|
|
|
|
|
by arockwell
5932 days ago
|
|
My gut feeling on this is that almost anyone can recognize that writing JSON like that is wrong. However, trying to determine if <person first-name="John" last-Name="Smith" />
is better than <person>
<first-name>John</first-name>
<last-name>Smith</last-name>
</person>
is often very difficult. In the wild, I've seen both strategies used depending on the situation. |
|