This operator is used in <numeric> and <string> expressions. Use it to add one value from another.
Symbol: +
|
|
Assuming that we are in a <string> expression.
|
|
Example 1
|
|
Example 2 |
"Kal" + "ipso"
Result = Kalipso
|
|
"Kalipso " + "#" + "1"
Result = Kalipso #1 |
|
|
|
Assuming that we are in a <numeric> expression. |
|
Example 3 |
|
Example 4 |
1 + 2
Result = 3 |
|
"Kalipso" + 1 + 2
Result = 3 |
Updated: 3/21/2018 4:39 PM |