Session Storage
Overview
A non visible component to create, read, update and delete the browser's session storage
Blocks
Methods
Get Value
Returns: String
gets the given key's value from the session storage
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
stores the given value under the given key in the session storage
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. |
Clear key
removes the given key from the session storage
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 from session storage
loading block...