JSON and XML are human readable formats and are language independent. They both have support for creation, reading and decoding in real world situations. We can compare JSON with XML, based on the following factors −
XML is more verbose than JSON, so it is faster to write JSON for programmers.
XML is used to describe the structured data, which doesn't include arrays whereas JSON include arrays.
JavaScript's eval method parses JSON. When applied to JSON, eval returns the described object.
Individual examples of XML and JSON −
{ "company": Volkswagen, "name": "Vento", "price": 800000 }
<car> <company>Volkswagen</company> <name>Vento</name> <price>800000</price> </car>