javascript-local-storage Flashcards

1
Q

How do you store data in localStorage?

A

localStorage.setItem(‘key name’)

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

How do you retrieve data from localStorage?

A

localStorage.getItem(‘key name’)

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

What data type can localStorage save in the browser?

A

strings

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

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

A

right before the tab is about to unload (close tab, close window, anything that would cause you tab to load, etc)

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