Local Storage
Purpose: |
Save data to local storage. Data will remain stored between sessions. |
Category: |
Local Storage |
Syntax: |
SetItem "name" "data" name Label or name assigned to the data. data Data to be saved. |
Example: |
SetItem "country" "Spain" |
Purpose: |
Retrieve data from local storage. |
Category: |
Local Storage |
Syntax: |
GetItem "name" [result var] name Label or name assigned to the data. result var Variable to store the retrieved data. |
Example: |
GetItem "country" [countryName] |
Purpose: |
Remove/delete data from local storage. |
Category: |
Local Storage |
Syntax: |
RemoveItem "name" name Label or name assigned to the data. |
Example: |
RemoveItem "country" |