and
Description
'and' operator is a boolean operator that returns true if both operands are true and returns false otherwise.
Input / Parameter
value1
The first boolean value to check.
Boolean
-
-
Yes
value2
The second boolean value to check.
Boolean
-
-
Yes
Output
Returns true if both operators are true, returns false otherwise.
Boolean
Example
In this example, we will check if the two values passed are both true and return the result in the console.
Step
Drag a
buttoncomponent into the canvas and open theActiontab. Select thepressevent of the button and drag theLog.writefunction to the event flow.Call the function
Logic.andinside theLog.writefunction.value1: Logic.greaterThan function value2: true
Call the function
Logic.greaterThaninside thevalue1parameter of theLogic.andfunction.value1: 3000 value2: 1100
Result
The console will print
truesincevalue1will return 'true' (3000 is greater than 1100) which matches the input forvalue2(true).
Last updated