Where Is SessionStorage Stored?

Where Is SessionStorage Stored? The sessionStorage exists only within the current browser tab. Another tab with the same page will have a different storage. But it is shared between iframes in the same tab (assuming they come from the same origin). How does sessionStorage store data? setItem(name, value) – set the value for a name.