add to a string in javascript code example
Example 1: how to concatenate strings and variables in javascript
const helloName = name => `Hello ${name}!`
Example 2: append string js
var s = "1"
s += "2"
const helloName = name => `Hello ${name}!`
var s = "1"
s += "2"