What is JSON (2024)

What is JSON (1)

JSON

JSON stands for JavaScript Object Notation

JSON is a lightweight format for storing and transporting data

JSON is often used when data is sent from a server to a web page

JSON is "self-describing" and easy to understand

JSON Example

This example defines an employees object: an array of 3 employee records (objects):

{
"employees":[
{"firstName":"John", "lastName":"Doe"},
{"firstName":"Anna", "lastName":"Smith"},
{"firstName":"Peter", "lastName":"Jones"}
]
}

Learn JSON Now!

JSON Syntax Rules

  • Data is in name/value pairs
  • Data is separated by commas
  • Curly braces hold objects
  • Square brackets hold arrays

JavaScript Object Notation

The JSON format is syntactically identical to the code for creating JavaScript objects.

Because of this similarity, a JavaScript program can easily convert JSON data into native JavaScript objects.

The JSON syntax is derived from JavaScript object notation syntax, but the JSON format is text only. Code for reading and generating JSON data can be written in any programming language.

JSON Data - A Name and a Value

JSON data is written as name/value pairs, just like JavaScript object properties.

A name/value pair consists of a field name (in double quotes), followed by a colon, followed by a value:

"firstName":"John"

JSON names require double quotes. JavaScript names do not.

JSON Objects

JSON objects are written inside curly braces.

Just like in JavaScript, objects can contain multiple name/value pairs:

{"firstName":"John", "lastName":"Doe"}

JSON Arrays

JSON arrays are written inside square brackets.

Just like in JavaScript, an array can contain objects:

"employees":[
{"firstName":"John", "lastName":"Doe"},
{"firstName":"Anna", "lastName":"Smith"},
{"firstName":"Peter", "lastName":"Jones"}
]

In the example above, the object "employees" is an array. It contains three objects.

Each object is a record of a person (with a first name and a last name).

Converting a JSON Text to a JavaScript Object

A common use of JSON is to read data from a web server, and display the data in a web page.

For simplicity, this can be demonstrated using a string as input.

First, create a JavaScript string containing JSON syntax:

var text = '{ "employees" : [' +
'{ "firstName":"John" , "lastName":"Doe" },' +
'{ "firstName":"Anna" , "lastName":"Smith" },' +
'{ "firstName":"Peter" , "lastName":"Jones" } ]}';

Then, use the JavaScript built-in function JSON.parse() to convert the string into a JavaScript object:

var obj = JSON.parse(text);

Finally, use the new JavaScript object in your page:

Example

<p id="demo"></p>

<script>
document.getElementById("demo").innerHTML =
obj.employees[1].firstName + " " + obj.employees[1].lastName;
</script>

Try it Yourself »

Full JSON Tutorial

This has been a short description of JSON.

For a full JSON tutorial go to W3Schools JSON Tutorial.


W3schools Pathfinder

Track your progress - it's free!

What is JSON (2024)
Top Articles
CPC vs CCS Certifications: What’s the Difference?
New Irish GAAP
Joi Databas
Breaded Mushrooms
Big Spring Skip The Games
Gabrielle Abbate Obituary
Retro Ride Teardrop
Nordstrom Rack Glendale Photos
More Apt To Complain Crossword
Snowflake Activity Congruent Triangles Answers
Tcu Jaggaer
Things To Do In Atlanta Tomorrow Night
Animal Eye Clinic Huntersville Nc
Peraton Sso
979-200-6466
Craiglist Kpr
Palm Coast Permits Online
Forum Phun Extra
Indiana Wesleyan Transcripts
Milanka Kudel Telegram
Beverage Lyons Funeral Home Obituaries
Football - 2024/2025 Women’s Super League: Preview, schedule and how to watch
Craigs List Tallahassee
C&T Wok Menu - Morrisville, NC Restaurant
Mandy Rose - WWE News, Rumors, & Updates
Breckiehill Shower Cucumber
Victory for Belron® company Carglass® Germany and ATU as European Court of Justice defends a fair and level playing field in the automotive aftermarket
Medline Industries, LP hiring Warehouse Operator - Salt Lake City in Salt Lake City, UT | LinkedIn
Vht Shortener
Chelsea Hardie Leaked
Gopher Carts Pensacola Beach
Craig Woolard Net Worth
O'reilly's Wrens Georgia
Teenbeautyfitness
Indiana Wesleyan Transcripts
Bay Focus
Skyrim:Elder Knowledge - The Unofficial Elder Scrolls Pages (UESP)
Caderno 2 Aulas Medicina - Matemática
ENDOCRINOLOGY-PSR in Lewes, DE for Beebe Healthcare
Craigslist Farm And Garden Reading Pa
Yakini Q Sj Photos
Darkglass Electronics The Exponent 500 Test
Booknet.com Contract Marriage 2
The Quiet Girl Showtimes Near Landmark Plaza Frontenac
Pronósticos Gulfstream Park Nicoletti
Campaign Blacksmith Bench
Causeway Gomovies
Grandma's Portuguese Sweet Bread Recipe Made from Scratch
Thrift Stores In Burlingame Ca
Cool Math Games Bucketball
Cheryl Mchenry Retirement
Equinox Great Neck Class Schedule
Latest Posts
Article information

Author: Catherine Tremblay

Last Updated:

Views: 5757

Rating: 4.7 / 5 (47 voted)

Reviews: 94% of readers found this page helpful

Author information

Name: Catherine Tremblay

Birthday: 1999-09-23

Address: Suite 461 73643 Sherril Loaf, Dickinsonland, AZ 47941-2379

Phone: +2678139151039

Job: International Administration Supervisor

Hobby: Dowsing, Snowboarding, Rowing, Beekeeping, Calligraphy, Shooting, Air sports

Introduction: My name is Catherine Tremblay, I am a precious, perfect, tasty, enthusiastic, inexpensive, vast, kind person who loves writing and wants to share my knowledge and understanding with you.