JSON Flashcards
1
Q
What is JSON?
A
lightweight format for storing and transporting data
2
Q
What are serialization and deserialization?
A
Serialization is a mechanism of converting the state of an object into a byte stream.
Deserialization is the reverse process where the byte stream is used to recreate the actual Java object in memory.
3
Q
Why are serialization and deserialization useful?
A
its what helps json become readable throughout different systems
4
Q
How do you serialize a data structure into a JSON string using JavaScript?
A
stringify
5
Q
How do you deserialize a JSON string into a data structure using JavaScript?
A
JSON.parse