contents   index   previous   next



Concatenation operator

 

The plus + may also be used to concatenate strings. The following expression:

 

"one" + "--" + "two"

 

results in the following string:

 

"one--two"

 


delete operator