InterviewSolution
Saved Bookmarks
| 1. |
What are the web storages present in HTML5? |
|
Answer» In HTML5, users will receive two types of WEB storages as following. 1. LOCAL STORAGE: Here, data will be stored in the local storage, and will not be cleared automatically or when we close the browser. 2. SESSION Storage: With this type, the user’s browser current session data will be stored. Once the browser is CLOSED, the storage will be cleared. |
|