javascript-and-json Flashcards

1
Q

What is JSON?

A

text based data format following Javascript Object Syntax.

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

What are serialization and deserialization?

A
  1. (serialization) ->turning object into byte. (convert it into string).
  2. (deserialization) –> turning byte into object.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Why are serialization and deserialization useful?

A

So we can send data over network, store it into a disk.

Easier to interact with for deserialization.

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

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

A

strinigify() –> to turn something into string.

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

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

A

parse() –> to turn something into object.

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