diff options
author | Michael Neth <foxdie@gmail.com> | 2015-10-15 15:35:13 -0500 |
---|---|---|
committer | Michael Neth <foxdie@gmail.com> | 2015-10-15 15:35:13 -0500 |
commit | 76b8a3a36eb0b339c39d545ff186294ba7eb7ecc (patch) | |
tree | 30ceff2b107063b783e381e1d2d0e40e7c615d88 /json.html.markdown | |
parent | af1465d02f8c44fe5a803c058a6ea55219dfe997 (diff) |
Added a more info link and extra explanation
Added link to json.org
Included information about using JSON text as data.
Diffstat (limited to 'json.html.markdown')
-rw-r--r-- | json.html.markdown | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/json.html.markdown b/json.html.markdown index 140aa366..cde7bc40 100644 --- a/json.html.markdown +++ b/json.html.markdown @@ -20,10 +20,16 @@ Supporting browsers are: Firefox 3.5+, Internet Explorer 8.0+, Chrome 1.0+, Oper File extension for JSON files is ".json" and the MIME type for JSON text is "application/json". +Many programming languages have support for serializing (encoding) and unserializing (decoding) JSON data into native data structures. Javascript has implicit support for manipulating JSON text as data. + +More information can be found at http://www.json.org/ + 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. * An ordered list of values. In most languages, this is realized as an array, vector, list, or sequence. +An object with various name/value pairs. + ```json { "key": "value", |