Skip to main content

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 ParamsTypeDescription
keyStringThe 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 ParamsTypeDescription
keyStringIt's a unique name that helps you identify a specific piece of stored information.
valueStringThe value is the actual content to be stored in the cookie storage.

Delete key

removes the given key from the LocalStorage

loading block...

Input ParamsTypeDescription
keyStringThe 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...