Definition concat(a, b) -- Same as a + b, for a and b sequences. Syntax Operator.concat(a,b)->a+b operator.__concat(a,b)->a+b Parameters string Import module Importing module is required in the Shell window and the Editor window. Example Here the method join two strings.
operator.__concat__(a,b) The method return the same value as Operator.concat(a,b).
Method (a+b) a+b return the same value as operator.concat(). Here in this example, it joins two variable and placing into the strings format as requested in double or single quotes.
The method concatenate the strings.
| operators
|