add (concat strings)
Previous  Top  Next

Syntax
expression1 add expression2

Arguments
None.

Returns
Combined string containing both strings.

Description
The string expression2 is concatonated to the string in expression1. This operator converts expressions to strings before concatonation.

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