
- Javascript Basics Tutorial
- Javascript - Home
- JavaScript - Overview
- JavaScript - Features
- JavaScript - Enabling
- JavaScript - Placement
- JavaScript - Syntax
- JavaScript - Hello World
- JavaScript - Console.log()
- JavaScript - Comments
- JavaScript - Variables
- JavaScript - let Statement
- JavaScript - Constants
- JavaScript - Data Types
- JavaScript - Type Conversions
- JavaScript - Strict Mode
- JavaScript - Reserved Keywords
- JavaScript Operators
- JavaScript - Operators
- JavaScript - Arithmetic Operators
- JavaScript - Comparison Operators
- JavaScript - Logical Operators
- JavaScript - Bitwise Operators
- JavaScript - Assignment Operators
- JavaScript - Conditional Operators
- JavaScript - typeof Operator
- JavaScript - Nullish Coalescing Operator
- JavaScript - Delete Operator
- JavaScript - Comma Operator
- JavaScript - Grouping Operator
- JavaScript - Yield Operator
- JavaScript - Spread Operator
- JavaScript - Exponentiation Operator
- JavaScript - Operator Precedence
- JavaScript Control Flow
- JavaScript - If...Else
- JavaScript - While Loop
- JavaScript - For Loop
- JavaScript - For...in
- Javascript - For...of
- JavaScript - Loop Control
- JavaScript - Break Statement
- JavaScript - Continue Statement
- JavaScript - Switch Case
- JavaScript - User Defined Iterators
- JavaScript Functions
- JavaScript - Functions
- JavaScript - Function Expressions
- JavaScript - Function Parameters
- JavaScript - Default Parameters
- JavaScript - Function() Constructor
- JavaScript - Function Hoisting
- JavaScript - Self-Invoking Functions
- JavaScript - Arrow Functions
- JavaScript - Function Invocation
- JavaScript - Function call()
- JavaScript - Function apply()
- JavaScript - Function bind()
- JavaScript - Closures
- JavaScript - Variable Scope
- JavaScript - Global Variables
- JavaScript - Smart Function Parameters
- JavaScript Objects
- JavaScript - Number
- JavaScript - Boolean
- JavaScript - Strings
- JavaScript - Arrays
- JavaScript - Date
- JavaScript - Math
- JavaScript - RegExp
- JavaScript - Symbol
- JavaScript - Sets
- JavaScript - WeakSet
- JavaScript - Maps
- JavaScript - WeakMap
- JavaScript - Iterables
- JavaScript - Reflect
- JavaScript - TypedArray
- JavaScript - Template Literals
- JavaScript - Tagged Templates
- Object Oriented JavaScript
- JavaScript - Objects
- JavaScript - Classes
- JavaScript - Object Properties
- JavaScript - Object Methods
- JavaScript - Static Methods
- JavaScript - Display Objects
- JavaScript - Object Accessors
- JavaScript - Object Constructors
- JavaScript - Native Prototypes
- JavaScript - ES5 Object Methods
- JavaScript - Encapsulation
- JavaScript - Inheritance
- JavaScript - Abstraction
- JavaScript - Polymorphism
- JavaScript - Destructuring Assignment
- JavaScript - Object Destructuring
- JavaScript - Array Destructuring
- JavaScript - Nested Destructuring
- JavaScript - Optional Chaining
- JavaScript - Global Object
- JavaScript - Mixins
- JavaScript - Proxies
- JavaScript Versions
- JavaScript - History
- JavaScript - Versions
- JavaScript - ES5
- JavaScript - ES6
- ECMAScript 2016
- ECMAScript 2017
- ECMAScript 2018
- ECMAScript 2019
- ECMAScript 2020
- ECMAScript 2021
- ECMAScript 2022
- JavaScript Cookies
- JavaScript - Cookies
- JavaScript - Cookie Attributes
- JavaScript - Deleting Cookies
- JavaScript Browser BOM
- JavaScript - Browser Object Model
- JavaScript - Window Object
- JavaScript - Document Object
- JavaScript - Screen Object
- JavaScript - History Object
- JavaScript - Navigator Object
- JavaScript - Location Object
- JavaScript - Console Object
- JavaScript Web APIs
- JavaScript - Web API
- JavaScript - History API
- JavaScript - Storage API
- JavaScript - Forms API
- JavaScript - Worker API
- JavaScript - Fetch API
- JavaScript - Geolocation API
- JavaScript Events
- JavaScript - Events
- JavaScript - DOM Events
- JavaScript - addEventListener()
- JavaScript - Mouse Events
- JavaScript - Keyboard Events
- JavaScript - Form Events
- JavaScript - Window/Document Events
- JavaScript - Event Delegation
- JavaScript - Event Bubbling
- JavaScript - Event Capturing
- JavaScript - Custom Events
- JavaScript Error Handling
- JavaScript - Error Handling
- JavaScript - try...catch
- JavaScript - Debugging
- JavaScript - Custom Errors
- JavaScript - Extending Errors
- JavaScript Important Keywords
- JavaScript - this Keyword
- JavaScript - void Keyword
- JavaScript - new Keyword
- JavaScript - var Keyword
- JavaScript HTML DOM
- JavaScript - HTML DOM
- JavaScript - DOM Methods
- JavaScript - DOM Document
- JavaScript - DOM Elements
- JavaScript - DOM Forms
- JavaScript - Changing HTML
- JavaScript - Changing CSS
- JavaScript - DOM Animation
- JavaScript - DOM Navigation
- JavaScript - DOM Collections
- JavaScript - DOM Node Lists
- JavaScript Miscellaneous
- JavaScript - Ajax
- JavaScript - Async Iteration
- JavaScript - Atomics Objects
- JavaScript - Rest Parameter
- JavaScript - Page Redirect
- JavaScript - Dialog Boxes
- JavaScript - Page Printing
- JavaScript - Validations
- JavaScript - Animation
- JavaScript - Multimedia
- JavaScript - Image Map
- JavaScript - Browsers
- JavaScript - JSON
- JavaScript - Multiline Strings
- JavaScript - Date Formats
- JavaScript - Get Date Methods
- JavaScript - Set Date Methods
- JavaScript - Modules
- JavaScript - Dynamic Imports
- JavaScript - BigInt
- JavaScript - Blob
- JavaScript - Unicode
- JavaScript - Shallow Copy
- JavaScript - Call Stack
- JavaScript - Reference Type
- JavaScript - IndexedDB
- JavaScript - Clickjacking Attack
- JavaScript - Currying
- JavaScript - Graphics
- JavaScript - Canvas
- JavaScript - Debouncing
- JavaScript - Performance
- JavaScript - Style Guide
- JavaScript Useful Resources
- JavaScript - Questions And Answers
- JavaScript - Quick Guide
- JavaScript - Functions
- JavaScript - Resources
JavaScript - JSON
What is JSON?
JSON (JavaScript Object Notation) is a text-based data format used to represent objects and data structures. It is language-independent, meaning that it can be used with any programming language. JSON is often used to exchange data between a server and a web application, or between two different web applications.
JSON Features
JSON is a language independent data storage format.
Language-independent
Can be used to represent objects and data structures.
Can be used to exchange data between different programming languages.
Can be nested within other objects.
Can contain any type of data.
JSON Syntax
JSON data is represented as key – value pairs. Each key value pair is separated by a comma. JSON data is written inside curly braces.
Following is a simple syntax of JSON &minusl;
{ "key1": value1, "key2": value2, ... }
The key names (key1, key2, …) is always written in double quotes. The JSON data values (value1, value2, …) can contain the following data types −
String − A sequence of characters enclosed in double quotes.
Number − An integer or a floating-point number.
Boolean − Either true or false.
Array − An ordered list of values.
Object − An unordered collection of key-value pairs.
null − Represents the absence of a value.
JSON Data
JSON data is written as key – value pairs same as a property is written in JavaScript object. Each key – value pair consist of key name written in double quotes, followed by a colon, followed by a value.
"name":"John Doe"
There is a difference between JSON data and JavaScript object property. The key name in JSON data is always written in double quotes but object property name does not require this.
JSON Objects
We can create JSON object by writing the JSON data inside the curly braces. The JSON object can contain multiple key – value pairs separated by comma.
{"name": "John Doe", "age": 30, "isStudent": false}
In JavaScript, we can parse the JSON object into a variable −
let person = {"name": "John Doe", "age": 30, "isStudent": false}
In the above example, the JSNO object contains three JSON data.
JSON Arrays
JSON arrays are written in brackets. We write JSON data inside the brackets to create a JSON array. An array can contain objects.
[ { "name": "John Doe", "age": 30, "occupation": "Software Engineer" }, { "name": "Jane Doe", "age": 25, "occupation": "Doctor" } ]
In the above example, an array contains two JSON objects. The array is JSON array. It’s a valid type of JSON.
Accessing JSON Data
We can access JSON data using the dot or bracket notation.
Example
In the example below, we created a JSON object with three key names – name, age, and occupation, and parse it into a variable name person. Then we accessed the name using dot notation and age using the bracket notation.
<html> <body> <div> Accessing JSON data </div> <div id="demo"></div> <script> const person = { "name": "John Doe", "age": 30, "occupation": "Software Engineer" } document.getElementById("demo").innerHTML = "Name: "+person.name + "<br>"+ "Age: "+person.age+ "<br>"+ "Occupation: "+person.occupation; </script> </body> </html>
Output
Accessing JSON data Name: John Doe Age: 30 Occupation: Software Engineer
As we can see in the output, it retrieved the key names "John Doe" and "30".
JSON Methods
The following table shows the JSON method and their description −
Sr.No. | Name & Description |
---|---|
1 |
It parses a JSON string and creates a JavaScript object. |
2 |
It converts a JavaScript object to JSON string. |
JSON vs. JavaScript Object
The JSON objects are same as the JavaScript object. Both can be converted to each other. But they have some differences −
JSON is language independent – can be used to exchange data between different programming languages but JavaScript object can be used in JavaScript only.
JSON can’t contain functions whereas JavaScript object can contain function as property values
The key names in JSON data is always written in double quotes but not in JavaScript objects.
Converting JSON string to JavaScript Objects
We can convert JSON to a JavaScript object using built-in function JSON.parse(). To do so first we create a JavaScript string containing the JSON object.
let jsonString = '{"name": "John Doe", "age": 30, "isStudent": false}';
Then, we use JSON.parse() function to convert string into a JavaScript object −
const jsonObject = JSON.parse(jsonString);
Example
In the example below, we define a string containing a JSON object. Then we use JSON.parse() function to parse the JSON string to a JavaScript object. Finally we displayed first JSON data value.
<html> <body> <div> Converting JSON string to JavaScript object</div> <div id="demo"></div> <script> let jsonString = '{"name": "John Doe", "age": 30, "isStudent": false}'; const jsonObject = JSON.parse(jsonString); document.getElementById("demo").innerHTML = jsonObject.name; </script> </body> </html>
Output
Converting JSON string to JavaScript object John Doe
As we can see in the output, the above program converted the JavaScript object to a JSON object.
Converting JavaScript Object to JSON
We can use the JavaScript built-in function JSON.stringify() to convert a JavaScript object to a JSON string.
<html> <body> <div> Converting JavaScript object to JSON string </div> <div id="demo"></div> <script> const person = { name: "John Doe", age: 30, isStudent: false }; const jsonString = JSON.stringify(person); document.getElementById("demo").innerHTML = jsonString; </script> </body> </html>
Output
Converting JavaScript object to JSON string {"name":"John Doe","age":30,"isStudent":false}
To Continue Learning Please Login