Twidget offers a variety of commands to manipulate numbers. Below are the math commands available, along with their descriptions, inputs, and outputs.
Description: Adds together a list of numbers and returns the sum.
Inputs:
numbers: A list of numbers to be added together.Output: A single number representing the sum of the input numbers.
Description: Subtracts one number from another.
Inputs:
number_1: The number to subtract from.
number_2: The number to subtract.
Output: A single number representing the result of the subtraction.
Description: Multiplies together a list of numbers and returns the product.
Inputs:
numbers: A list of numbers to be multiplied together.Output: A single number representing the product of the input numbers.
Description: Divides one number by another.
Inputs:
number_1: The dividend (number to be divided).
number_2: The divisor (number to divide by).
Output: A single number representing the quotient of the division.
Description: Computes the remainder of one number divided by another.
Inputs:
number_1: The number to be divided.
number_2: The number to divide by.
Output: A single number representing the remainder of the division.
Description: Checks whether two numbers are equal.
Inputs:
number_1: The first number.
number_2: The second number.
Output: A boolean indicating whether the numbers are equal (true) or not (false).
Description: Checks whether two numbers are not equal.
Inputs:
number_1: The first number.
number_2: The second number.
Output: A boolean indicating whether the numbers are not equal (true) or not (false).
Description: Checks whether the first number is greater than the second number.
Inputs:
number_1: The first number.
number_2: The second number.
Output: A boolean indicating whether the first number is greater than the second number (true) or not (false).
Description: Checks whether the first number is less than the second number.
Inputs:
number_1: The first number.
number_2: The second number.
Output: A boolean indicating whether the first number is less than the second number (true) or not (false).
Description: Checks whether the first number is greater than or equal to the second number.
Inputs:
number_1: The first number.
number_2: The second number.
Output: A boolean indicating whether the first number is greater than or equal to the second number (true) or not (false).
Description: Checks whether the first number is less than or equal to the second number.
Inputs:
number_1: The first number.
number_2: The second number.
Output: A boolean indicating whether the first number is less than or equal to the second number (true) or not (false).
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...
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 thr...
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...
Database
Twidget offers many commands to manage data in your database. Below is a list of the available commands and their functionalities: Get Data. Retrieve an entry from a table. Get Multiple Data. Retrieve multiple entries from a table. Save Data. Save an object to a database table. Save Multiple Data. S...
Miscellaneous
Twidget provides several miscellaneous commands to facilitate various tasks. Is Null. Description: Checks whether the provided value is null or not. Inputs: - value: The value to be checked. Output: - boolean: Returns `true` if the value is null; otherwise, returns `false`. Not Null. Description: Ch...