search
HomeWeb Front-endJS TutorialInteresting facts about JSON
Interesting facts about JSONSep 09, 2023 pm 04:01 PM

关于 JSON 的有趣事实

JSON stands for JavaScript Object Notation, basically, JSON is often used with JavaScript and it was originally a subset of the JavaScript programming language. However, JSON is a language-independent data format. In this article, we will learn about JSON and its interesting facts through examples.

JSON Introduction

When data can be transmitted and stored in a simple format, it's called JSON, or JavaScript Object Notation. Arrays, objects, name and value pairs, and other data types can all be found in JSON. This format uses quotation marks, square brackets, parentheses, semicolons, and colons as punctuation marks. In JSON, data is represented as name-value pairs, much like JavaScript object properties. JSON is a lightweight data transmission method. Furthermore, this language is described as prototype-based, multi-paradigm, and dynamic. Whenever data is sent from the server to a web page, we need to use JSON.

JSON Facts

Here we will discuss many interesting facts about JSON with explanations and examples. Here are interesting facts about JSON -

  • Originally, JSON was considered a subset of the JavaScript programming language. (Specifically the standard ECMA-262, third edition published in December 1999).

  • JSON is generated by JavaScript, and many programming languages ​​now have code that can be used to call and interpret JSON formatted data. It is a data format that is not language specific. The accepted JSON internet media type is application/JSON. The .json extension is used for JSON file names.

  • Douglas Crockford was the first to define and popularize the JSON format. In April 2001, Douglas Crockford and Chip Morningstar sent the first JSON message.

  • Crockford inserted a phrase into the JSON license stating that "this software should be used for good, not evil." On the other hand, since free software and open source software usually mean no restrictions on the purpose of use, this part leads to licensing compatibility issues of the JSON license with other open source licenses.

  • The syntax of the JSON format is comparable to the syntax of JavaScript object creation code. This allows JavaScript programs to easily convert JSON data into JavaScript objects. JSON data can be used by any programming language, and since it is just a text format, it can be easily transferred between machines.

  • Cartoon Network's Communities.com has a children's digital asset trading game called "Cartoon Orbit" (State's co-founders all worked at the company), using a browser plug-in with Customize the messaging system to change DHTML components. This is the beginning of the JSON library.

  • If the JSON file has syntax problems, the request will usually fail silently. Therefore, JSON data should not be manually edited frequently. The data exchange format JSON has higher syntax requirements than JavaScript's object literal representation. For example, all strings in a JSON representation, whether values ​​or properties, need to be enclosed in double quotes

  • The JSON string is decrypted by JavaScript running in the user's browser, and the product data is displayed on the page.

Use JSON

As we have seen, JSON is an object type in the JavaScript programming language that stores data in the form of string literals, ending with the .json extension. JSON objects store data in key-value format, enclosed in curly braces just like JavaScript objects. Let’s see an example to better understand JSON code -

{
   "key1" : "pair1",
   "key2" : "pair2",
   "key3" : {
      "sub-key1" : "opp_value",
      "sub_key2" : "opp_value",
   },
   "key4" : {
      "sub-key1" : "opp_value",
      "sub_key2" : "opp_value",
   },
   "key5" : "pair5",
}

In the above JSON code, we can see that there are 5 key pairs, where the keys are in the form of simple strings. The key pairs can be strings or other objects, such as arrays, strings, etc. All key pairs are separated by commas and enclosed within curly braces.

Any data can be stored this way and can be passed or shared in a simple way using this format.

Storing Arrays in JSON

We have seen simple code for writing JSON objects, now let us see how users can store arrays in JSON objects -

{
   "key1" : "pair1",
   "key2" : "pair2",
   "key3" : {
      "sub-key1" : "opp_value",
      "sub_key2" : "opp_value",
   },
   "key4" : [
      "sub-key1" : "opp_value",
      "sub_key2" : "opp_value", object1, object2
   ],
   "key5" : "pair5",
}

In the above code, we can see that the fourth key is stored in an array, not another object, which is supported by json.

Difference between JSON and XML

Both JSON and XML are used to store data and share or transfer data, and both are very good in their own league, let’s look at some of the differences between them -

  • Compared to XML, JSON is very easy to learn because it is not used directly.

  • Since JSON is just a straight string containing data in the form of a key pair, it is easy to read and write JavaScript objects, while XML is difficult to read and write

  • JSON is data-oriented and works that way, while XML is document-oriented.

  • JSON is not secure because it is only data-oriented, while XML is quite secure compared to JSON.

  • XML does not support arrays, while JSON provides tools that support arrays.

Similarities between XML and JSON

We've seen some of the differences between JSON and XML, now let's look at some of the things they have in common -

  • Since both XML and JSON contain text that humans can read, they are both self-describing

  • Both JSON and XML support hierarchical organization. When we talk about hierarchies, we mean values ​​contained within values.

  • Data exchange formats Data exchange formats such as JSON and XML are supported by a variety of programming languages.

  • Both formats can be processed quickly and easily.

  • Retrieval: Both forms of data can be retrieved using HTTP requests. Data can be retrieved using GET, PUT, and POST methods.

in conclusion

In this article, we learned about JSON and its interesting facts through examples. JSON stands for JavaScript Object Notation, basically, JSON is often used with JavaScript and it was originally a subset of the JavaScript programming language. Arrays, objects, name and value pairs, and other data types can all be found in JSON. This format uses quotation marks, square brackets, parentheses, semicolons, and colons as punctuation marks.

The above is the detailed content of Interesting facts about JSON. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:tutorialspoint. If there is any infringement, please contact admin@php.cn delete
Replace String Characters in JavaScriptReplace String Characters in JavaScriptMar 11, 2025 am 12:07 AM

Detailed explanation of JavaScript string replacement method and FAQ This article will explore two ways to replace string characters in JavaScript: internal JavaScript code and internal HTML for web pages. Replace string inside JavaScript code The most direct way is to use the replace() method: str = str.replace("find","replace"); This method replaces only the first match. To replace all matches, use a regular expression and add the global flag g: str = str.replace(/fi

Custom Google Search API Setup TutorialCustom Google Search API Setup TutorialMar 04, 2025 am 01:06 AM

This tutorial shows you how to integrate a custom Google Search API into your blog or website, offering a more refined search experience than standard WordPress theme search functions. It's surprisingly easy! You'll be able to restrict searches to y

8 Stunning jQuery Page Layout Plugins8 Stunning jQuery Page Layout PluginsMar 06, 2025 am 12:48 AM

Leverage jQuery for Effortless Web Page Layouts: 8 Essential Plugins jQuery simplifies web page layout significantly. This article highlights eight powerful jQuery plugins that streamline the process, particularly useful for manual website creation

Build Your Own AJAX Web ApplicationsBuild Your Own AJAX Web ApplicationsMar 09, 2025 am 12:11 AM

So here you are, ready to learn all about this thing called AJAX. But, what exactly is it? The term AJAX refers to a loose grouping of technologies that are used to create dynamic, interactive web content. The term AJAX, originally coined by Jesse J

What is 'this' in JavaScript?What is 'this' in JavaScript?Mar 04, 2025 am 01:15 AM

Core points This in JavaScript usually refers to an object that "owns" the method, but it depends on how the function is called. When there is no current object, this refers to the global object. In a web browser, it is represented by window. When calling a function, this maintains the global object; but when calling an object constructor or any of its methods, this refers to an instance of the object. You can change the context of this using methods such as call(), apply(), and bind(). These methods call the function using the given this value and parameters. JavaScript is an excellent programming language. A few years ago, this sentence was

Improve Your jQuery Knowledge with the Source ViewerImprove Your jQuery Knowledge with the Source ViewerMar 05, 2025 am 12:54 AM

jQuery is a great JavaScript framework. However, as with any library, sometimes it’s necessary to get under the hood to discover what’s going on. Perhaps it’s because you’re tracing a bug or are just curious about how jQuery achieves a particular UI

10 Mobile Cheat Sheets for Mobile Development10 Mobile Cheat Sheets for Mobile DevelopmentMar 05, 2025 am 12:43 AM

This post compiles helpful cheat sheets, reference guides, quick recipes, and code snippets for Android, Blackberry, and iPhone app development. No developer should be without them! Touch Gesture Reference Guide (PDF) A valuable resource for desig

How do I create and publish my own JavaScript libraries?How do I create and publish my own JavaScript libraries?Mar 18, 2025 pm 03:12 PM

Article discusses creating, publishing, and maintaining JavaScript libraries, focusing on planning, development, testing, documentation, and promotion strategies.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment