Javascript – Why does the `storage` event exist for `sessionStorage` if it doesn't propagate across tabs?
MDN Web Docs says that "The storage event of the Window interface fires when a storage area (localStorage or sessionStorage) has been modified in the context of another document." However sessionStorage data is shared only within one tab, and cannot…