append to string in js code example
Example 1: append string js
var s = "1"
s += "2"
Example 2: concat no and string in javascript
['Hello', ' ', 'World'].join(''); // 'Hello World'
Example 3: javascript add to string
var s = 'hell'
s = s + 'o'