Difference between sessionStorage cookies and localStorage

Given below are the various differences.

SessionStorage – The data is stored for a particular session. The data will be lost whenever the browser tab will be closed or after some particular session. Maximum size stored can be up to 5MB.

LocalStorage – The data is stored with no expiration date. The data can only be cleared by JavaScript or by clearing the browser cache. Storage limit is maximum than the sessionStorage and cookie.

Cookies – It stores the data that has to be sent back to the server with some requests. The cookie’s expiration varies on the type and duration set from either the server-side or client-side. Maximum size stored can be less than 4KB.

Top 50+ Angular Interview Questions with Answers

Angular is one of the most current web development frameworks around the world.  In almost every interview, you will have… Read More

5 years ago