JS and JSON Flashcards
1
Q
What is JSON?
A
JSON is a string that makes transferring data more accessible
2
Q
What are serialization and deserialization?
A
converting to stream of bytes and vice versa
3
Q
Why are serialization and deserialization useful?
A
condenses data to make it transferable
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