JSON and JavaScript_ Comprehensive Guide
JSON and JavaScript_ Comprehensive Guide
Learn more HTML, CSS, JavaScript Web Development at https://basescripts.com/ Laurence Svekis
1
1. Parsing JSON to JavaScript Object 3
2. Stringifying JavaScript Object to JSON 3
Accessing JSON Data 3
Example: Nested JSON Access 3
Working with JSON in APIs 4
Fetching Data from an API 4
Posting Data to an API 4
Detailed Examples 4
Example 1: Filter JSON Data 5
Example 2: Dynamically Generate HTML from JSON 5
Exercises 5
Exercise 1: Parse and Access JSON 5
Exercise 2: Convert an Object to JSON 6
Exercise 3: Fetch and Display Data 6
Multiple-Choice Questions 6
Question 1: 6
Question 2: 7
Question 3: 7
Best Practices for JSON in JavaScript 7
JSON (JavaScript Object Notation) is a lightweight data format often used for exchanging data
between a client and a server. This guide explains JSON, its relationship with JavaScript,
practical examples, exercises, and quiz questions to help you master JSON in JavaScript.
What is JSON?
JSON is a text-based format that represents data as key-value pairs, arrays, and objects. It is
commonly used in APIs and web applications.
Features of JSON:
Example JSON:
{
"name": "Alice",
"age": 25,
"skills": ["JavaScript", "React", "Node.js"],
Learn more HTML, CSS, JavaScript Web Development at https://basescripts.com/ Laurence Svekis
2
"isEmployed": true
}
3
zip: "10001"
}
}
};
console.log(jsonData.user.name); // Output: Alice
console.log(jsonData.user.address.city); // Output: New York
Detailed Examples
Learn more HTML, CSS, JavaScript Web Development at https://basescripts.com/ Laurence Svekis
4
Example 1: Filter JSON Data
const jsonData = [
{ name: "Alice", age: 25 },
{ name: "Bob", age: 30 },
{ name: "Charlie", age: 35 }
];
const filteredData = jsonData.filter((person) => person.age > 30);
console.log(filteredData);
// Output: [{ name: "Charlie", age: 35 }]
HTML:
<div id="container"></div>
Exercises
Parse the following JSON string and log the city value:
{
"person": {
"name": "Alice",
"address": {
"city": "New York",
"zip": "10001"
}
Learn more HTML, CSS, JavaScript Web Development at https://basescripts.com/ Laurence Svekis
5
}
}
Solution:
Solution:
Solution:
fetch("https://jsonplaceholder.typicode.com/users")
.then((response) => response.json())
.then((data) => {
data.forEach((user) => console.log(user.name));
});
Multiple-Choice Questions
Question 1:
1. JSON.stringify()
2. JSON.parse()
Learn more HTML, CSS, JavaScript Web Development at https://basescripts.com/ Laurence Svekis
6
3. JSON.convert()
4. JSON.objectify()
Answer: 2. JSON.parse()
Question 2:
1. {name: "Alice"}
2. {"name": "Alice"}
3. {}
4. [name: "Alice"]
Question 3:
1. String
2. Number
3. Function
4. Boolean
Answer: 3. Function
Learn more HTML, CSS, JavaScript Web Development at https://basescripts.com/ Laurence Svekis