Modified JSON sheet.

This commit is contained in:
CSnap 2023-11-19 06:28:12 +00:00
parent ac693a0111
commit 0839076441
1 changed files with 9 additions and 2 deletions

11
JSON.md
View File

@ -4,12 +4,19 @@
1. [Introduction to JSON](#introduction-to-json) 1. [Introduction to JSON](#introduction-to-json)
2. [JSON Data Types](#json-data-types) 2. [JSON Data Types](#json-data-types)
2.1 [String](#string) 2.1 [String](#string)
2.2 [Number](#number) 2.2 [Number](#number)
2.3 [Boolean](#boolean) 2.3 [Boolean](#boolean)
2.4 [Array](#array) 2.4 [Array](#array)
2.5 [Object](#object) 2.5 [Object](#object)
2.6 [Null](#null) 2.6 [Null](#null)
3. [JSON Syntax](#json-syntax) 3. [JSON Syntax](#json-syntax)
4. [JSON Example](#json-example) 4. [JSON Example](#json-example)
5. [Reading and Writing JSON in Python](#reading-and-writing-json-in-python) 5. [Reading and Writing JSON in Python](#reading-and-writing-json-in-python)
@ -18,9 +25,9 @@
```json ```json
{ {
"name": "JSON Cheat Sheet", "name": "JSON Cheet Sheet",
"version": "1.1", "version": "1.1",
"author": "OpenAI", "author": "CheetSheetz",
"topics": ["JSON", "Data Types", "Syntax", "Example"] "topics": ["JSON", "Data Types", "Syntax", "Example"]
} }
``` ```