This site is mobile accessible. Press the "Tap Here" button to use a different font-size.
Smartphone icons created by Freepik - Flaticon
The Web Storage API is a simple syntax for storing and retrieving data in the browser. It is very easy to use:
localStorage.setItem("name", "John Doe"); localStorage.getItem("name");
The Web Storage API is supported in all browsers:
Chrome | IE/Edge | Firefox | Safari | Opera |
Yes | Yes | Yes | Yes | Yes |
localStorage.setItem("name", "John Doe");
localStorage.getItem("name");
sessionStorage.getItem("name");
sessionStorage.setItem("name", "John Doe");
sessionStorage.getItem("name");
Property/Method | Description |
---|---|
key(n) | Returns the name of the nth key in the storage |
length | Returns the number of data items stored in the Storage object |
getItem(keyname) | Returns the value of the specified key name |
setItem(keyname, value) | Adds a key to the storage, or updates a key value (if it already exists) |
removeItem(keyname) | Removes that key from the storage |
clear() | Empty all keys out of the storage |
Property | Description |
---|---|
window.localStorage | Allows to save key/value pairs in a web browser. Stores the data with no expiration date |
window.sessionStorage | Allows to save key/value pairs in a web browser. Stores the data for one session |
Eventually the navigation links, above, will be replaced by these (previous) and (next) buttons below.
JavaScript icons used in the buttons provided by ICONS8.COM. Smartphone icons created by Freepik - Flaticon