+ 5
What is the difference between local storage and cookies?
2 Answers
+ 11
sessionStorage,Ā localStorage and CookiesĀ all are used to store data on the client side. Each one has its ownstorageĀ and expiration limit. sessionStorage: similar tolocalStorageĀ but expires when the browser closed (not the tab).Ā Cookie: stores data that has to be sent back to the server with subsequent requests.
Source:
www.quora.com
+ 3
Thanks for your fast reply :)