localStorage.setItem(name, value);
localStorage.getItem(name);
localStorage.name = value;
localStorage.name;
localStorage.clear()
localStorage.removeItem(name);
| Parameter | Description |
|---|---|
| name | The key/name of the item |
| value | The value of the item |
The Web Storage API is specified in the WHATWG HTML Living Standard.