Docsity
Docsity

Prepare for your exams
Prepare for your exams

Study with the several resources on Docsity


Earn points to download
Earn points to download

Earn points by helping other students or get them with a premium plan


Guidelines and tips
Guidelines and tips

Understanding JSON: A Lightweight Data Format for Web Applications, Summaries of Javascript programming

Json (javascript object notation) is a popular data format used for lightweight data exchange on the web. An introduction to json, its properties, and its relationship with python. An example json object is also included.

Typology: Summaries

2021/2022

Uploaded on 09/27/2022

ekanga
ekanga 🇺🇸

4.9

(16)

263 documents

1 / 3

Toggle sidebar

This page cannot be seen from the preview

Don't miss anything!

bg1
Lecture 20: JSON
pf3

Partial preview of the text

Download Understanding JSON: A Lightweight Data Format for Web Applications and more Summaries Javascript programming in PDF only on Docsity!

Lecture 20: JSON

JSON

JSON stands for JavaScript Object Notation. It is a data format and it has become a

standard for lightweight data exchange on the web. Many websites that contain active

updating use JSON to exchange data between the web server and the web browser. At

its core, JSON is either a dictionary, a list, or a built-in type like string, integer, or

boolean. It has several nice properties with respect to Python:

JSON is valid Python;

JSON is human readable;

JSON is compact; and

JSON is an accepted, ubiquitous format.