Javascript – In which order `storage` event is received?
In which order storage event is received? For example, tab_1 executes code localStorage.set('key', 1); localStorage.set('key', 2); and tab_2 executes code localStorage.set('key', 3); localStorage.set('key', 4); They execute code simultaneously. Questions: Can 2 be stored before 1? Can 3 or 4 be…