Working with JSON
Scorri per mostrare il menu
JSON is a format used to store and transfer data.
It looks similar to JavaScript objects, but it is always written as a string.
const jsonString = '{"name": "John", "age": 25}';
To work with JSON in JavaScript, you need to convert it.
To convert JSON into a JavaScript object, use JSON.parse:
1234const jsonString = '{"name": "John", "age": 25}'; const data = JSON.parse(jsonString); console.log(data.name);
To convert a JavaScript object into JSON, use JSON.stringify:
1234const user = { name: "John", age: 25 }; const json = JSON.stringify(user); console.log(json);
Tutto è chiaro?
Grazie per i tuoi commenti!
Sezione 1. Capitolo 18
Chieda ad AI
Chieda ad AI
Chieda pure quello che desidera o provi una delle domande suggerite per iniziare la nostra conversazione
Sezione 1. Capitolo 18