concat 4 strings in javascript 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: concat no and string in javascript
['Hello', ' ', 'World'].join(''); // 'Hello World'