Learning Fuze - rc0821 > JavaScript-local-storage > Flashcards
How do you store data in localStorage?
setItem()
How do you retrieve data from localStorage?
getItem()
What data type can localStorage save in the browser?
JSON
When does the ‘beforeunload’ event fire on the window object?
Before someone is about to exit the window but there is some condition like a form that’s not filled out. When it’s about to be unloaded.