JavaScript-and-JSON Flashcards
1
Q
What is JSON?
A
a text-based data format following JS object syntax. Exists as a string – useful when you want to transmit data across a network. Format for exchanging data.
2
Q
What are serialization and deserialization?
A
serialization: converting a native object to a string so it can be transmitted across the network. deserialization: converting a string to a native object.
3
Q
Why are serialization and deserialization useful?
A
can send info anywhere
4
Q
How do you serialize a data structure into a JSON string using JavaScript?
A
JSON.stringify()… turns it into JSON
5
Q
How do you deserialize a JSON string into a data structure using JavaScript?
A
JSON.parse()… turns it back into an object