1
JavaScriptIntermediate#browser#async
localStorage persists until cleared, sessionStorage clears when the tab closes; both hold about 5 MB of strings and are never sent to the server. Cookies are small, can expire and are attached to every matching request.
localStorage.setItem('theme', 'dark');
JSON.parse(localStorage.getItem('user') ?? 'null');
sessionStorage.setItem('step', '2');