Sign Up

Loops

In Twidget, loops allow you to execute commands multiple times, either based on a condition or through a set number of iterations. Loops can also be nested, meaning you can run loops within other loops, creating complex logic for your tasks.

-

List Loop

The List Loop command enables you to loop through a list of items, executing nested commands for each item in the list.

Count Loop

The Count Loop command repeats the nested commands a specified number of times. You can also specify the order or the iterator.

While Loop

The While Loop command continues to execute nested commands as long as a specified condition holds true.

-

Break

The Break command exits the current loop prematurely, regardless of the remaining iterations or conditions.

Continue

The Continue command skips to the next iteration of the loop, bypassing the remaining commands in the current iteration.

Nested Loops

You can nest loops within other loops to create more complex logical structures.

Use these looping commands to efficiently control the flow of your tasks and manage repetitive actions in Twidget.

Related Topics

Error Handling

When building applications with Twidget, you may encounter situations where you need to handle errors gracefully to ensure your application runs smoothly. Twidget provides two powerful commands for error handling: `try-catch` and `throw-error`. This documentation will guide you on how to use these c...

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...

Conversion

Overview. 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...

Math

Twidget offers a variety of commands to manipulate numbers. Below are the math commands available, along with their descriptions, inputs, and outputs. Sum. Description: Adds together a list of numbers and returns the sum. - Inputs: - `numbers`: A list of numbers to be added together. - Output: A sin...

Send Message

Send SMS Command. With Twidget, you can send SMS messages to phones using the `Send SMS` command. This functionality varies depending on the provider. Currently, we support Twilio as the SMS provider. To use Twilio for SMS integrations, you will need: - A Twilio account ID - Twilio Auth Token - A Tw...