Ninox automatically makes the following adjustments for you
Ninox script automatically removes superfluous braces in expressions. For example, 1 + (2 * 3)
is saved as 1 + 2 * 3
.
Ninox script automatically removes unnecessary whitespaces in expressions. For example, text (year (today () ) )
is saved as text(year(today()))
. However, the script also adds whitespace where it is deemed useful, e.g., to enhance readability.
You can always change the name of a field without having to modify the script afterward. The field name is only a reference to the field ID. The field ID cannot be changed.
When declaring a variable, Ninox automatically adds a semicolon at the end.
When writing a script, Ninox automatically takes care of the indentations upon saving.