or
Last updated
Last updated
'or' operator is a boolean operator that returns true if either operand is true and returns false otherwise.
Name | Description | Input Type | Default | Options | Required |
---|---|---|---|---|---|
Description | Output Type |
---|---|
In this example, we will check if either of the values passed is true and print the result in the console.
Drag a button
component into the canvas and open the Action
tab. Select the press
event of the button and drag the Log.write
function to the event flow.
Call the function Logic.or
inside the Log.write
function.
Call the function Logic.greaterThan
inside the parameter value1
.
The console will print true
since value1
will return 'true' (3000 is greater than 1100) although value2
returns false.
value1
The first boolean value to check.
Boolean
-
-
Yes
value2
The second boolean value to check.
Boolean
-
-
Yes
Returns true if either operator is true, returns false otherwise.
Boolean