Web Storage API Interfaces

  • Storage: It provides access to a particular local storage.
  • Window: It is a window containing a DOM document.
  • StorageEvent: It is implemented by a storage event which is sent to a window when a storage area changes.

Web Storage API

Web API Storage facilitates the feature of storing data within the browser on the client side. It is also referred to as web storage. It uses a key-value pair format to store the data.

Table of Content

  • Web Storage API Concepts and Usage
  • Web Storage API Interfaces
  • Examples Showing of Web Storage API

Similar Reads

Web Storage API Concepts and Usage

The Web Storage API provides two mechanisms for storing data:...

Web Storage API Interfaces

Storage: It provides access to a particular local storage. Window: It is a window containing a DOM document. StorageEvent: It is implemented by a storage event which is sent to a window when a storage area changes....

Examples Showing of Web Storage API

1. Using sessionStprage setItem Method:...

Contact Us