plus
Last updated
Last updated
Adds two numbers or concat it if one of the operands is a string.
Name | Description | Input Type | Default | Options | Required |
---|---|---|---|---|---|
value1 | The first value to add/concat. | Number/Text/String | - | - | No |
value2 | The second value to add/concat. | Number/Text/String | - | - | No |
Description | Output Type |
---|---|
Returns the sum/concatenation of the two values. | Number/Text/String |
In this example, we will use function plus
to concat a number and a string
Drag a button
component into the canvas and open the Action
tab. Select the press
event of the button and drag the console
function to the event flow, and change the param type of value
param to subflow/function.
Drag the plus
function into the subflow, enter the 2 values to be added/concat together. For this example they are 1
for value1
and result
for value2
.
Now click the button in preview, check the console, you will the result 1result
.