If Statements
If-then-else statements are crucial feature for any app longer than a couple of lines. Buttonize acknowledges this and provides the B
symbol, which contains all you need in order to construct if statements in your Buttonize apps.
How to make if
statements in Buttonize
app.buttonize.io
References
B.if
If statement.
Example
B.eq
Equality operator.
Example
Equivalent of this expression in TypeScript
B.gt
Greater than operator.
Example
Equivalent of this expression in TypeScript
B.gte
Greater than or equal operator.
Example
Equivalent of this expression in TypeScript
B.lt
Lower than operator.
Example
Equivalent of this expression in TypeScript
B.lte
Lower than or equal operator.
Example
Equivalent of this expression in TypeScript
B.and
Logical AND operator.
Example
Equivalent of this expression in TypeScript
B.or
Logical OR operator.
Example
Equivalent of this expression in TypeScript
B.not
Logical NOT operator.
Example