This operator takes two arguments. If either argument is a number, Tag or Normalize value, the return value will be the result of adding the two arguments. Otherwise, the return value will be a string of the first argument concatenated with the second argument.
a = "Bob Smith";
b = "Operator " + a + " has logged on";
In the preceding examples, b will be equal to the string "Operator Bob Smith has logged on".