JS Local Storage Flashcards
1
Q
How to you store data inlocalStorage?
A
localStorage.setItem( ) method
2
Q
How to you retrieve data fromlocalStorage?
A
localStorage.getItem( ) method
3
Q
What data type canlocalStoragesave in the browser?
A
‘String’ type data (local storage needs serialized data )
4
Q
When does the’beforeunload’event fire on thewindowobject?
A
Before the page unloads