javascript-local-storage Flashcards
1
Q
How to you store data in localStorage?
A
set item method, pass value and key you want to store
2
Q
How to you retrieve data from localStorage?
A
localstorage.getItem
3
Q
What data type can localStorage save in the browser?
A
JSON data
4
Q
When does the ‘beforeunload’ event fire on the window object?
A
When the document is unloaded.