JSON Flashcards

1
Q

What is JSON?

A

JSON is a way to transmit data via a text-based format for representing structured data on JavaScript object syntax.

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

What are serializations and deserialization?

A

Serialization is the process of turning an object in memory into a stream of bytes so you can do stuff like store it on disk or send it over the network.

Deserialization is the reverse process: turning a stream of bytes into an object in memory.

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

Why are serialization and deserialization useful?

A

Gives us a way to transfer data to various devices and formats

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

JSON.stringify method

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

JSON.parse method

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

How do you store data in localStorage?

A

localStorage.setItem(name, value)

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

How do you retrieve data from localStorage?

A

localStorage.getItem(name)

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

What data type can localStorage save in the browser?

A

string data specifically JSON strings

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

When does the ‘beforeunload’ event fire on the window object?

A

Before the page refreshes

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