JS and JSON Flashcards

1
Q

How do you deserialize a JSON string into a data structure using JavaScript?

A

JSON.parse( )

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

How do you serialize a data structure into a JSON string using JavaScript?

A

JSON.stringify( )

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What are serialization and deserialization?

A

Serialization: converting complex data (like an object) to string
Deserialization: converting string to object

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is JSON?

A

JavaScript Object Notation (JSON) is a standard text-based format for representing structured data based on JavaScript object syntax.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Why are serialization and deserialization useful?

A

<b>Serialization</b> allows from data to be stored in memory. Also makes it easier to transfer data across a network.
<b>Deserialization</b> makes it so that data is easier to interact with.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly