_saveVariable
Documentation: _saveVariable
Function
_saveVariable
function is used to store a key-value pair with up to two optional additional values. It facilitates the saving of multiple string values associated with a specific key, which can be retrieved later as needed. The function does not return any value.Function Signature:
Parameters:
key
(Required):string
value1
(Required):string
value2
(Optional):value1
. It must be a string.string
undefined
value3
(Optional):value1
and value2
. It must be a string.string
undefined
Return Value:
void
).Function Workflow:
1.
key
and value1
parameters are provided and valid. It ensures that value1
is a non-empty string and that key
is a non-empty string.2.
value1
, and if provided, value2
and value3
, under the specified key
. All values are stored as strings.3.
key
as the identifier. This allows for the values to be retrieved later as needed.4.
Example Usage:
Important Considerations:
key
is unique within the context of your application to avoid overwriting existing data.value1
, value2
, and value3
must be strings. If you need to store non-string data, consider converting it to a string format before storing._saveVariable
, you can store up to three string values associated with a specific key, enabling efficient data management and retrieval within your application.Modified at 2024-08-23 12:23:23