JSON Flashcards

1
Q

What is JSON?

A

Javascript object notation format for storing and transporting the data

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

What are serialization and deserialization?

A

Serialization attributes an object into a string, deserialization convert string in to object

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

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

A

JSON.stringify() convert a JavaScript object r-value into a json string

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

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

A

JSON.parse()n

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

How to you store data in localStorage?

A

storage.setItem(key name, key value)

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

How to you retrieve data from localStorage?

A

storage.getItem(key name)

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

What data type can localStorage save in the browser?

A

string data

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

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

A

??????

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