Data Storing in Browser Flashcards
localStorage and sessionStorage
Web storage objects localStorage and sessionStorage allow to save key/value pairs in the browser. data survives a page refresh (for sessionStorage) and even a full browser restart (for localStorage)
Browser Storage vs Cookies
Unlike cookies, web storage objects are not sent to server with each request. Because of that, we can store much more. Most modern browsers allow at least 5 megabytes of data (or more) and have settings to configure that.
Storage Binding
The storage is bound to the origin (domain/protocol/port triplet)
Methods
localStorage is like a Map collection (setItem/getItem/removeItem), but also allows access by index with key(index).
setItem(key, value) – store key/value pair.
getItem(key) – get the value by key.
removeItem(key) – remove the key with its value.
clear() – delete everything.
key(index) – get the key on a given position.
length – the number of stored items.
both key and value must be strings.
Local Storage main features
Shared between all tabs and windows from the same origin.
The data does not expire. It remains after the browser restart and even OS reboot.
Storage Limit
The limit is 5mb+, depends on the browser.
Viewing local storage details
Open Developer Tools (F12 or Ctrl + Shift + I).
Go to the Application tab.
In the left sidebar, expand Storage → Click Local Storage.
Select your website domain.
You’ll see key-value pairs stored in localStorage.
Viewing local storage details using console
console.log(localStorage);
Cookies