javascript-nd-json Flashcards

1
Q

What is JSON?

A

JSON is a text-based data format following JavaScript object syntax, which was popularized by Douglas Crockford.

it transfers data as a string

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

What are serialization and deserialization?

A

Converting a string to a native object is called deserialization.

converting a native object to a string so it can be transmitted across the network is called serialization.

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

Why are serialization and deserialization useful?

A

You can send data in one language that can be used in another language

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

How to you serialize data into a JSON string using JavaScript?

A

JSON.stringify()

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

How do you deserialize a JSON string using JavaScript?

A

JSON.parse()

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