Local Storage
Overview
A non visible component to read, create, update and delete any data in the browser's local storage.
Blocks
Methods
Get Value
Returns: String
get the value of the given key
loading block...
| Input Params | Type | Description |
|---|---|---|
| key | String | The unique name that is used to store the value by using Store Value block. |
Store Value
set the given value for a given key
loading block...
| Input Params | Type | Description |
|---|---|---|
| key | String | It's a unique name that helps you identify a specific piece of stored information. |
| value | String | The value is the actual content to be stored in the cookie storage. |
Delete key
removes the given key from the LocalStorage
loading block...
| Input Params | Type | Description |
|---|---|---|
| key | String | The unique name that is used to store the value by using Store Value block. |
Delete All
removes all the keys and values present in the LocalStorage
loading block...