web api instance property
Window: sharedStorage property
Secure context
The global read-only sharedStorage property returns the WindowSharedStorage object for the current origin. This is the main entry point for writing data to shared storage using the Shared Storage API.
[!NOTE]
sharedStorageis not available inside workers. It is implemented byWindowand is also available in shared storage worklets (seesharedStorage, which returnsWorkletSharedStorage).
Value
A WindowSharedStorage object instance.
Examples
window.sharedStorage
.set("ab-testing-group", "0")
.then(() => console.log("Value saved to shared storage"));
Specifications
SpecificationsStandards references are available on the canonical MDN page.
Browser compatibility
Browser compatibilityCompatibility data is available on the canonical MDN page.