string conct code example
Example 1: javascript string concat vs +
It is strongly recommended to use the string
concatenationoperators (+, +=) instead of String.concat
method for perfomance reasons
Example 2: string concatenation js
var aString="";
aString.concat(value1, value2, ... value_n);