The web storage is a standardised way of providing larger amounts of client-side storage and of more appropriately "partitioning" session storage and locally persistent storage.
The web storage is a standardised way of providing larger amounts of client-side storage and of more appropriately "partitioning" session storage and locally persistent storage. Web storage provides a much larger initial local storage (5MB per domain), unlimited session storage (limited only by system resources) and successfully partitions local and session storage so that only the data you want to persist is persisted in local storage and data you want to be transient stays transient.
Note: Use local-storage or session-storage for questions specific to any one.