Storage setItem() Method
Example
Set the value of the specified local storage item:
Description
The setItem() method sets the value of the specified Storage Object item.
The setItem() method belongs to the Storage Object, which can be either a localStorage object or a sessionStorage object.
Browser Support
| Method | |||||
|---|---|---|---|---|---|
| setItem() | 4 | 8 | 3.5 | 4 | 10.5 |
Syntax
Parameter Values
| Parameter | Description |
|---|---|
| keyname | Required. A String specifying the name of the key you want to set the value of |
| value | Required. A String specifying the value of the key you want to set the value of |
Technical Details
| DOM Version: | Web Storage API |
|---|---|
| Return Value: | A String, representing the inserted value |
More Examples
Example
The same example, but using session storage instead of local storage.
Set the value of the specified session storage item:
Example
You can also set the value by using dot notation (obj.key):
Example
You can also set the value like this:
Related Pages
Web Storage Reference: getItem() Method
Web Storage Reference: removeItem() Method