14 Difference Between JSON And XML
What Is JSON(JavaScript Object Notation)? JSON is an open standard file format and data interchange format, that uses human-readable text to store and transit data objects. It is used primarily to transmit data between a server and web application, as an alternative to XML. JSON defines seven value types: string, number, object, array, true, false and null. JSON is built on two structures:
A collection of name/value pairs. In various languages, this is realized as an object, record, struct, dictionary, hash table, keyed list or associative array.