Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save MuhammadQuran17/b989ed147de5b60d493a7572dc8f7b1f to your computer and use it in GitHub Desktop.
Save MuhammadQuran17/b989ed147de5b60d493a7572dc8f7b1f to your computer and use it in GitHub Desktop.
local_storage&session_storage
  • localStorage is similar to sessionStorage , except that while localStorage data has no expiration time, sessionStorage data gets cleared when the page session ends — that is, when the page is closed.
  • LocalStorage can store up to 5 MB (Megabytes) of data per domain in most modern browsers. This limit applies to both localStorage and sessionStorage. While this is a considerable amount of space compared to cookies (4KB)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment