let x = "hello"; x += "world"; console.log(x) output: hello world!
var s = "1" s += "2"
var s = 'hell' s = s + 'o'