JSON

From Computer Science Wiki
Revision as of 10:44, 12 September 2018 by Orest (talk | contribs)
Web Science[1]

JSON, one helluva cool programming language. 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.

References