Twidget's conversion commands allow you to easily convert different data types to the required format. Below is a list of the available conversion commands and examples of how to use them.
The Convert to Text command converts the provided value to a text (string) format.
Examples:
123 converts to "123"
true converts to "true"
[1, 2, 3] converts to "[1, 2, 3]"
{"name": "John"} converts to "{\"name\": \"John\"}"
The Convert to Number command converts the provided value to a numerical format.
Examples:
"123" converts to 123
true converts to 1
false converts to 0
"12.34" converts to 12.34
The Convert to Boolean command converts the provided value to a boolean (true/false) format.
Examples:
"true" converts to true
"false" converts to false
1 converts to true
0 converts to false
"" converts to false
"text" converts to true
The Convert to Date command converts the provided value to a date format.
Examples:
"2021-12-31" converts to Fri Dec 31 2021
"12/31/2021" converts to Fri Dec 31 2021
1633039200000 (timestamp) converts to Fri Oct 01 2021
The Convert to Object command converts the provided value to an object format.
Examples:
'{"name": "John"}' converts to {"name": "John"}
'["1", "2", "3"]' converts to ["1", "2", "3"]
Any valid JSON string converts to its corresponding object
By utilizing these conversion commands, you can seamlessly transform data types to suit your specific requirements within Twidget.
Conditionals
Condition Command. The Condition Command allows you to perform actions based on whether an expression evaluates to true or false. You can nest other commands within the true or false branches of the condition, enabling complex logic flows. - Expression Builder: Validate two variables to equal true. ...
Session Storage
Twidget includes a suite of session storage commands that enable no-code interaction with the browser’s `sessionStorage` API. These tools allow temporary storage of key-value data for the current page session. Purpose. Session storage commands allow developers to manage transient data tied to a sing...
Lists
Twidget offers a variety of commands to help you manipulate lists easily without coding. Below is a detailed explanation of each command available. Get. Description: Returns the element in the provided list at the given index. Inputs: - `list`: The list from which to get the element. - `index`: The ...
Date
Twidget offers a variety of commands to manipulate date objects. Below are the available commands along with their respective descriptions, inputs, and outputs. Current Date. Description: Returns the current date and time. Output: - Type: DATE Add Time. Description: Returns the date plus a specified...
Security
Twidget provides several built-in functions to enhance the security of your applications. Below is an overview of each security command, including its description, inputs, and outputs. Generate ID. Description: Generates a unique identifier. None - Type: Text Hash Text. Description: Hashes the provi...