JSON Flashcards

1
Q

What is JSON?

A

o JavaScript Object Notation
o Formatting system to make an object into a string and vice versa
o Format to create data that can be saved in the long term and to also be able to easily send/receive 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 – process of turning an object in memory into stream of bytes

Deserialization – Turning byes 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

It makes it possible to send/receive data

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()

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()

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

How to you store data in localStorage?

A

localStorage.setItem(‘key’, ‘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(‘keyname’)

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

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 unloads (when window is about to be closed, before closing the tab, etc)

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