javascript-and-json Flashcards
1
Q
What is JSON?
A
JSON (JavaScript Object Notation)
2
Q
What are serialization and deserialization?
A
Converting a string to a native object is called deserialization
converting a native object to a string so it can be transmitted across the network is called serialization
3
Q
Why are serialization and deserialization useful?
A
Storing data, Sending data over a network, Transferring data between languages, Simplifying complex data structures, human readable
4
Q
How do you serialize a data structure into a JSON string using JavaScript?
A
JSON.stringify()
5
Q
How do you deserialize a JSON string into a data structure using JavaScript?
A
JSON.parse()