Can sessionStorage shares data between multiple tabs?

Photo by Lia Trevarthen on Unsplash

List of Browser Storage Mechanism

  1. localStorage — 5MB, saved for infinity or until users manually deletes it.
  2. sessionStorage — 5MB, saved for the life of current tab.
  3. cookie- 4KB, saved up to infinity
  4. sessionCookie —

What is sessionStorage?

  1. This storage cannot share data between multiple tabs.
  2. But, data can be shared between iframes in the same tab.
  3. The data survives page refresh, but not closing/opening tab.

Preparing for Frontend Interview — GreatFrontend System Design Course

Level Up JavaScript Concept — Read You Don’t Know JS

--

--