JSON: Difference between revisions
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
[[file:Connection.png|right|frame|Web Science<ref>http://www.flaticon.com/</ref>]] | [[file:Connection.png|right|frame|Web Science<ref>http://www.flaticon.com/</ref>]] | ||
JSON, | JSON, it is an open-standard file format that uses human-readable text to transmit data objects consisting of attribute–value pairs and array data types. JSON in itself stands for JavaScript Object Notation, which basically means that it is used for Notating Objects, duh. JSON is a JS derivative, it uses very similar if not the exact same syntax as JS (example 1). | ||
<syntaxhighlight> | <syntaxhighlight> |
Revision as of 09:45, 12 September 2018
JSON, it is an open-standard file format that uses human-readable text to transmit data objects consisting of attribute–value pairs and array data types. JSON in itself stands for JavaScript Object Notation, which basically means that it is used for Notating Objects, duh. JSON is a JS derivative, it uses very similar if not the exact same syntax as JS (example 1).
Example 1 - String Value Application
JS: { name : 'Orest' }
JSON: { "name" : "Orest" }
Standards
- This topic doesn't cover a specific standard, but it is something you should you know.