Home
Recent Q&A
Java
Cloud
JavaScript
Python
SQL
PHP
HTML
C++
Data Science
DBMS
Devops
Hadoop
Machine Learning
Azure
Blockchain
Devops
Ask a Question
How is Local Storage different from Session Storage?
Home
JavaScript
How is Local Storage different from Session Storage?
0
votes
asked
Sep 20, 2021
in
JavaScript
by
sharadyadav1986
How is Local Storage different from Session Storage?
local-storage
session-storage
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Sep 20, 2021
by
sharadyadav1986
Local Storage – In local storage, the data will not be returned to the server at every HTTP request (images, HTML, CSS, JavaScript, etc). It helps to reduce the traffic between server and client.
Session Storage – Session Storage is quite similar to the local storage. However, unlike data storage in local systems which has an expiry time, data stored using session storage gets cleared once the page session ends.
...