I'm new to the web application domain. I have been watching some hot and eye-catching discussions regarding JSON everywhere.
Can someone briefly explain what JSON is? Do you have links to websites or forums that can help enlighten me about JSON?
|
I'm new to the web application domain. I have been watching some hot and eye-catching discussions regarding JSON everywhere. Can someone briefly explain what JSON is? Do you have links to websites or forums that can help enlighten me about JSON? |
||||
|
|
|
JSON (JavaScript Object Notation) is a data storage language, a bit like XML, but uses a more familiar "dictionary" style syntax and semantics. For example, I can store an address book in JSON:
Notice that it looks a lot like a Python or JavaScript dictionary and list syntax. That's basically all it is: a serialisation of these six basic data types:
More information at json.org. Note that although it has "JavaScript" in the name, it is really easy to read and write JSON data from any language, though the data structure is best represented in dynamic languages like JavaScript and Python. The website has a huge list of implementations in various languages. |
||||
|
|
|
From json.org:
|
|||
|
|
|
It's a way of representing simple data structures as a string, usually for data interchange. |
|||
|
|