javascript and json Flashcards
1
Q
What is JSON?
A
JavaScript Object Notation (JSON) is a standard text-based format for representing structured data based on JavaScript object syntax.
2
Q
What are serialization and deserialization?
A
sterlization - breaking data into bytes
Desterilization - putting data back together
3
Q
Why are serialization and deserialization useful?
A
to send and recieve data
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()