SWiSH Player Support
SWF4 or later - Supported Internally
Syntax
expression1 add expression2
Arguments
None.
Returns
Combined string containing both strings.
Description
The string expression2 is concatenated to the string in expression1. This operator converts expressions to strings before concatenation.
Sample
a = "cat ";
b = "eats dog";
c = a add b; // c now contains "cat eats dog"
trace(5 add 10); // displays "510".
See Also
+ operator