Browser Storages get set e and delete.
Cookie, localStorage, and sessionStorage are
all the simple data storage ways for client-side storage. Cookie is more
like an old school way to handle the simple data stored on the client-side. In HTML5,
web storage, such as localStorage or sessionStorage is introduced and it’s also easier to use.
Cookies
Persistence: user can set expiration time for each cookies.
Storage: there’s only about 4KB space for entire cookie data.
Traffic: data needs to be sent back to the server for all the HTTP requests, which increases the traffic between client and server.
Works for old browsers.
localStorage
Persistence: data exist until it’s deleted
Storage: available space increase to around 5 MB
Traffic: less traffic because not all of the HTTP requests need to send data back to the server
Domain: data only stays in the same domain, which means if data is stored on website A,
next time it can only be accessed on website A. To be clear of the domain used here, it means the same website field. For example, whichever different posts or different personal pages in Facebook that you are browsing are all under facebook.com. As a result, those pages are all under the same domain.
sessionStorage
sessionStorage is similar to localStorage. The only difference will be the persistence of the data.
For sessionStorage, once user leaves the domain, such as closing the tabs or windows, the sessionStorage is emptied.
//Save data to sessionStorage
sessionStorage.setItem('key', 'value');
// Get saved data from sessionStorage
var data = sessionStorage.getItem('key');
// Remove saved data from sessionStorage
sessionStorage.removeItem('key')
/------------------------------------------------------------------------------------------------------/
/To store the data:
localStorage.setItem(“key”,”value”);
//To retrieve the data:
localStorage.getItem(“key”);
//To update the data (the same as to store the data):
localStorage.setItem(“key”,”value”);
//To remove one entry:
localStorage.removeItem(“key”);
//To clear all the data:
localStorage.clear();
References
https://dev.to/sandy8111112004/cookie-localstorage-or-sessionstorage-4lp2
https://www.guru99.com/cookies-in-javascript-ultimate-guide.html